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/
[]
# Transitive deps we can't control - suppress until upstream fixes
= [
"RUSTSEC-2024-0436", # paste (via ratatui) - use pastey when ratatui migrates
"RUSTSEC-2025-0119", # number_prefix (via indicatif) - awaiting upstream update
]
[]
# Ward is MIT licensed. Allow permissive licenses only.
= [
"MIT",
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Unicode-3.0",
"Unicode-DFS-2016",
"Zlib",
"BSL-1.0",
"CC0-1.0",
"OpenSSL",
"MPL-2.0",
"CDLA-Permissive-2.0",
]
= 0.8
[]
# Warn on multiple versions of the same crate (common in large dep trees)
= "warn"
= "deny"
[]
# Only allow crates from crates.io
= "deny"
= "deny"
= ["https://github.com/rust-lang/crates.io-index"]
= []