-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathdeny.toml
95 lines (87 loc) · 2.28 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
targets = [
# Host.
{ triple = "x86_64-unknown-linux-gnu", features = ["std"] },
{ triple = "x86_64-apple-darwin", features = ["std"] },
{ triple = "aarch64-unknown-linux-gnu", features = ["std"] },
{ triple = "aarch64-apple-darwin", features = ["std"] },
# Runtime.
{ triple = "wasm32-unknown-unknown" },
]
all-features = false
no-default-features = true
feature-depth = 1
[advisories]
db-urls = ["https://github.com/rustsec/advisory-db"]
vulnerability = "deny"
unmaintained = "allow"
yanked = "allow"
notice = "deny"
ignore = [
# TODO(#1118): update the curve25519-dalek internal dependency to 4.1.3+
"RUSTSEC-2024-0344",
# TODO(#723): update the ed25519-dalek 1 internal dependency to 2.0.0+
"RUSTSEC-2022-0093",
# TODO(#742): vulnerable webpki.
"RUSTSEC-2023-0052",
# TODO(#1013): vulnerable rustls.
"RUSTSEC-2024-0336",
# TODO(#1197): update the sqlx internal dependency to 0.8.1+
"RUSTSEC-2024-0363",
# TODO(#1352): update the hashbrown internal dependency to 0.15.1+
"RUSTSEC-2024-0402",
# TODO(#1361): update the idna internal dependency to 1.0.0+
"RUSTSEC-2024-0421",
]
[licenses]
unlicensed = "deny"
allow = [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"0BSD",
"CC0-1.0",
"Unlicense",
# To review:
"MPL-2.0",
"GPL-3.0 WITH Classpath-exception-2.0",
"OpenSSL",
]
deny = []
copyleft = "allow"
allow-osi-fsf-free = "neither"
default = "deny"
confidence-threshold = 0.8
exceptions = [{ allow = ["Unicode-DFS-2016"], name = "unicode-ident", version = "*" }]
[[licenses.clarify]]
name = "ring"
version = "*"
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"
allow = []
deny = [
# Avoid using precompiled serde_derive.
{ name = "serde_derive", version = "> 1.0.171, < 1.0.184" },
]
features = []
skip = []
skip-tree = []
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = ["https://github.com/rust-blockchain/evm"]
[sources.allow-org]
github = ["humanode-network"]
gitlab = []
bitbucket = []