-
Notifications
You must be signed in to change notification settings - Fork 0
/
deny.toml
46 lines (40 loc) · 873 Bytes
/
deny.toml
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
[graph]
all-features = true
[output]
feature-depth = 1
[advisories]
ignore = [
"RUSTSEC-2024-0384",
{ crate = "[email protected]", reason = "Instant is need for WASM, we don't care about WASM" },
]
[licenses]
allow = [
"Apache-2.0",
"BSD-3-Clause",
"MIT",
"Unicode-DFS-2016",
"Unicode-3.0",
"Zlib",
]
[[licenses.clarify]]
crate = "ring"
expression = "MIT AND ISC AND OpenSSL"
license-files = [
{ path = "LICENSE", hash = 0xbd0eed23 }
]
[licenses.private]
ignore = true
[bans]
multiple-versions = "allow"
wildcards = "allow"
highlight = "all"
workspace-default-features = "allow"
external-default-features = "allow"
deny = [
{ crate = "opentelemetry", deny-multiple-versions = true }
]
[sources]
unknown-registry = "warn"
unknown-git = "warn"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]