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
# cargo-deny configuration. See https://embarkstudios.github.io/cargo-deny/
[]
# Fail on security advisories and on yanked crates in the lockfile.
= "deny"
# Tolerated advisories (each with a justification). These are informational
# ("unmaintained") advisories or ones whose unsound path we cannot reach; none
# is an exploitable vulnerability here, and none has a drop-in fix today.
= [
# bincode 2.x is the multinode wire codec; no drop-in replacement. Revisit
# with the wire-format work (see issues #153 / #156).
"RUSTSEC-2025-0141",
# paste is pulled transitively by rmp (MessagePack). Drops out when
# rmp/rmp-serde move off it.
"RUSTSEC-2024-0436",
]
[]
# Allow-list of licenses that appear in the dependency tree. Extend
# deliberately (with a note) when a new dependency introduces a new license.
= [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Unicode-3.0",
"Zlib",
"MPL-2.0",
]
= 0.8
[]
# Duplicate versions are usually unavoidable platform shims; warn, don't fail.
= "warn"
= "allow"
[]
= "deny"
= "deny"
= ["https://github.com/rust-lang/crates.io-index"]