-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 822 Bytes
/
Cargo.toml
File metadata and controls
33 lines (31 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "milcheck"
version = "0.3.7"
authors = ["Pierre Dommerc <dommerc.pierre@gmail.com>"]
license = "MPL-2.0"
edition = "2024"
description = "A CLI to get pacman mirrorlist status and the Arch Linux latest news"
repository = "https://github.com/doums/milcheck"
readme = "README.md"
keywords = ["archlinux", "pacman", "mirror", "mirrorlist"]
categories = ["command-line-utilities"]
[dependencies]
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
log = "0.4.29"
env_logger = "0.11.10"
clap = { version = "4.6", features = ["derive"] }
termion = "4.0"
reqwest = {
version = "0.13",
default-features = false,
features = ["http2", "native-tls", "blocking", "json"]
}
html2text = "0.17"
chrono = "0.4"
rss = "2.0"
[profile.release]
strip = true
opt-level = "s"
lto = true