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
44
45
46
47
48
49
50
51
52
53
54
# cargo-deny configuration
# https://embarkstudios.github.io/cargo-deny/
[]
= []
= false
= false
# --- Advisories (vulnerability database) ---
[]
= "~/.cargo/advisory-db"
= ["https://github.com/rustsec/advisory-db"]
# Known advisories to ignore (with justification)
= [
# rsa crate: Marvin attack — not exploitable in our usage (HMAC verification only)
"RUSTSEC-2023-0071",
# chrono: localtime_r unsoundness — we only use UTC, never local time
"RUSTSEC-2026-0009",
# aws-lc-sys: CN validation bypass + CRL bypass — fix requires aws-lc-sys >=0.39 which needs newer Rust.
# Low impact: qhook uses aws-lc only via rustls for HTTPS client (reqwest). Not a server TLS termination.
"RUSTSEC-2026-0044",
"RUSTSEC-2026-0048",
]
# --- Licenses ---
[]
= [
"MIT",
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Zlib",
"Unicode-3.0",
"CC0-1.0",
"MIT-0",
"Unlicense",
"OpenSSL",
"BSL-1.0",
"CDLA-Permissive-2.0",
]
= 0.8
# --- Bans (duplicate/denied crates) ---
[]
= "warn"
= "allow"
# --- Sources (registry restrictions) ---
[]
= "deny"
= "deny"
= ["https://github.com/rust-lang/crates.io-index"]
= []