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
# cargo-deny configuration: the dependency-graph half of the security gate.
# Checks RustSec advisories, license compatibility, duplicate versions, and
# registry sources. Run locally with `just deny`.
[]
= true
# Gate the published surface, not the dev tooling: dev-dependencies and their
# transitive trees are the test harness's concern, not the shipped crate's.
= true
[]
= "deny"
[]
# Apache-2.0/MIT-compatible permissive licenses only.
= [
"Apache-2.0",
"MIT",
# unicode-ident is (MIT OR Apache-2.0) AND Unicode-3.0; the Unicode license
# only covers the embedded character tables and is permissive.
"Unicode-3.0",
]
[]
# clippy::cargo warns on duplicates; this is the enforcing counterpart. Known
# unavoidable duplicates get a targeted skip with the chain that pulls them in.
= "deny"
= [
# The proc-macro ecosystem is migrating from syn 2 to syn 3: serde_derive,
# clap_derive, and thiserror-impl are already on 3, while schemars_derive,
# tokio-macros, tracing-attributes, and zerocopy-derive still pull 2. Drop
# this skip once the tail of derive crates has moved.
{ = "syn@2", = "syn 2 -> 3 ecosystem migration in progress" },
]
[]
= "deny"
= "deny"