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
# cargo-deny configuration — https://embarkstudios.github.io/cargo-deny/
#
# Blocks supply chain vectors: typosquatting via alt registries,
# git-source dependency hijacking, known vulns, license violations.
[]
# All vulnerability advisories are errors by default in 0.19+.
# Unmaintained crates are warnings (won't block CI).
= "none"
= "warn"
= [
# RUSTSEC-2026-0097: rand 0.8 unsound *only* when a custom log::Log
# implementation calls `rand::rng()` with thread_rng + log features
# enabled. ATI uses tracing_subscriber::fmt::layer() which is a
# tracing Layer, not a log::Log implementation, so the trigger path
# is not reachable. The rand 0.8 line has no backport fix; moving
# to rand 0.9 is a separate ecosystem-wide migration tracked apart
# from this PR.
"RUSTSEC-2026-0097",
]
[]
= [
"MIT",
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Unicode-3.0",
"CDLA-Permissive-2.0",
]
= "warn"
[]
= "warn"
= "deny"
[]
= "deny"
= "deny"