-
Notifications
You must be signed in to change notification settings - Fork 28
/
Cargo.toml
43 lines (38 loc) · 1021 Bytes
/
Cargo.toml
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
34
35
36
37
38
39
40
41
42
43
[package]
name = "arch-audit"
version = "0.1.20"
authors = ["Andrea Scarpino <andrea@scarpino.dev>"]
description = "A utility like pkg-audit for Arch Linux based on Arch Security Team data"
repository = "https://gitlab.com/ilpianista/arch-audit"
license = "MIT"
readme = "README.md"
categories = ["command-line-utilities"]
keywords = ["archlinux", "security"]
edition = "2018"
[[bin]]
name = "arch-audit"
[dependencies]
alpm = "^2.0"
anyhow = "^1.0"
atty = "^0.2"
reqwest = { version = "^0.11", default-features = false, features = ["rustls-tls-native-roots", "socks", "gzip", "brotli"] }
tokio = { version = "^1", features = ["macros", "rt-multi-thread"] }
env_logger = "^0.9"
log = "^0.4"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
term = "^0.7"
structopt = "^0.3"
strum = "^0.21"
strum_macros = "^0.21"
url = "^2.2"
lazy_static = "^1.4"
toml = "^0.5"
dirs-next = "^2.0"
[dev-dependencies]
tempfile = "^3.2"
[features]
git = ["alpm/git"]
[profile.release]
lto = true
codegen-units = 1