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
# cargo-deny configuration — the supply-chain gate run by the `Check` CI
# workflow (roadmap A4.1). Run locally with `cargo deny check`.
# Schema v2 (cargo-deny 0.14+).
[]
= 2
# RUSTSEC advisories deny by default. To accept one, add its ID here with
# a comment explaining why.
= []
[]
= 2
# Permissive licenses present across the dependency graph (dev deps
# included). Derived from `cargo metadata`. AND-expressions require every
# listed license: "Apache-2.0 AND ISC" and "(MIT OR Apache-2.0) AND
# Unicode-3.0" are why ISC and Unicode-3.0 appear below; BSD-3-Clause and
# Zlib are the only crates licensed solely under those terms.
= [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Unicode-3.0",
"Zlib",
]
= 0.8
[]
# Large dev trees routinely pull duplicate versions of small crates; that
# is not worth failing CI over. Real concerns (a banned crate) go here.
= "warn"
[]
= "deny"
= "deny"
# No git sources: eccoxide is now consumed from its crates.io release
# (0.4), so every dependency resolves from the registry (A1.5 done).