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
# cargo-deny configuration for rusty-rich
# See: https://embarkstudios.github.io/cargo-deny/
# ── Advisory Database ────────────────────────────────────────────
[]
= "deny"
# RUSTSEC-2024-0320 (yaml-rust unmaintained) — transitive via syntect, only used at compile time
= [
"RUSTSEC-2024-0320", # yaml-rust — transitive via syntect, compile-time only
"RUSTSEC-2025-0141", # bincode — transitive via syntect, unmaintained
]
# ── License Compliance ───────────────────────────────────────────
[]
= [
"MIT",
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"MPL-2.0",
"Unicode-3.0",
"Zlib",
"BSL-1.0", # Boost Software License
]
# crates that use multiple-license expressions
= [
{ = "unicode-ident", = ["Unicode-3.0", "MIT", "Apache-2.0"] },
{ = "syntect", = ["MIT"] },
{ = "onig", = ["MIT"] },
{ = "onig_sys", = ["MIT"] },
]
# ── Crate Sources ────────────────────────────────────────────────
[]
= "deny"
= "deny"
= ["https://github.com/rust-lang/crates.io-index"]
= []
# ── Bans / Duplicates ───────────────────────────────────────────
[]
= "warn"
# atty has been removed from dependencies (replaced with std::io::IsTerminal).