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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Documentation for this configuration file can be found here
# https://embarkstudios.github.io/cargo-deny/checks/cfg.html
[]
= [
{ = "x86_64-unknown-linux-gnu" },
{ = "x86_64-apple-darwin" },
{ = "x86_64-pc-windows-msvc" },
{ = "aarch64-linux-android" },
]
# https://embarkstudios.github.io/cargo-deny/checks/licenses/cfg.html
[]
= [
"Apache-2.0 WITH LLVM-exception",
"Apache-2.0",
"BSD-3-Clause",
"ISC",
"MIT",
"MPL-2.0",
"Unicode-DFS-2016",
"Zlib",
"Unicode-3.0",
]
[[]]
= "ring"
= "MIT AND ISC AND OpenSSL"
= [
{ = "LICENSE", = 0xbd0eed23 }
]
# https://embarkstudios.github.io/cargo-deny/checks/bans/cfg.html
[]
= "deny"
= "allow"
= []
= [
# proptest depends on bitflags 1.x.x while other crates depend on 2.x.x so
# ignore its dependency tree until it updates.
{ = "proptest", = 20 },
# This is maintained externally and we allow it to have duplicate
# dependencies relative to Wasmtime's main dependency tree.
{ = "witx", = 20 },
# They want to publish version 2.0 to upgrade `hashbrown` so in the meantime
# it is duplicated for us.
{ = "indexmap", = 2 },
# criterion is on old version, will update on next release.
{ = "itertools" },
# backtrace currently using an older version of gimli/addr2line
{ = "backtrace" },
# right now terminal_size pulls in an older version of io-lifetimes
{ = "io-lifetimes" },
{ = "file-per-thread-logger", = "this uses an old version of env-logger; may be unmaintained?" }
]