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
45
46
# cargo-deny configuration for wire-codec.
#
# See https://embarkstudios.github.io/cargo-deny/ for the schema and behavior.
# Per REPS section "Dependency Management" this file enforces:
# - license policy
# - banned crates
# - duplicate version detection
# - source restrictions
[]
# Run as part of `cargo deny check`. RustSec advisories that affect this crate's
# dependency tree fail the build.
= "warn"
= []
[]
# Allowed licenses for the runtime dependency tree.
# wire-codec itself is `Apache-2.0 OR MIT`. Dev-deps may pull in others.
= [
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"MIT",
"MIT-0",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Unicode-DFS-2016",
"Unicode-3.0",
"Zlib",
"0BSD",
"CC0-1.0",
]
= 0.93
[]
= "warn"
= "deny"
= "all"
# Crates explicitly disallowed from the dependency tree. Empty by default.
= []
[]
= "deny"
= "deny"
= ["https://github.com/rust-lang/crates.io-index"]
= []