-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeny.toml
More file actions
170 lines (145 loc) · 6.23 KB
/
deny.toml
File metadata and controls
170 lines (145 loc) · 6.23 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
# cargo-deny configuration
# https://embarkstudios.github.io/cargo-deny/
[graph]
targets = []
all-features = false
[advisories]
ignore = [
{
id = "RUSTSEC-2023-0071",
reason = "rsa timing side-channel via jsonwebtoken/exousia — no safe upgrade, local-only use",
},
{
id = "RUSTSEC-2025-0012",
reason = "backoff unmaintained — transitive dep via librqbit",
},
{
id = "RUSTSEC-2025-0141",
reason = "bincode unmaintained — transitive dep via librqbit-peer-protocol",
},
{
id = "RUSTSEC-2025-0060",
reason = "crypto-hash unmaintained — transitive dep via librqbit-sha1-wrapper",
},
{
id = "RUSTSEC-2024-0384",
reason = "instant unmaintained — transitive dep via backoff/librqbit, no alternative",
},
{
id = "RUSTSEC-2024-0436",
reason = "paste unmaintained (dtolnay archived) — transitive dep via lofty/taxis",
},
]
[licenses]
allow = [
"MIT",
"MIT-0",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-1-Clause",
"BSD-2-Clause",
"BSD-3-Clause",
"BSL-1.0",
"CC0-1.0",
"0BSD",
"ISC",
"Zlib",
"Unlicense",
"Unicode-3.0",
"MPL-2.0",
"LGPL-2.1-or-later",
"GPL-3.0-or-later",
"AGPL-3.0-or-later",
"CDLA-Permissive-2.0",
"bzip2-1.0.6",
]
confidence-threshold = 0.8
[bans]
multiple-versions = "deny"
wildcards = "allow"
skip = [
# bincode: librqbit-peer-protocol pins 1.x; librqbit itself uses 2.x
{ name = "bincode", version = "1" },
{ name = "bincode", version = "2" },
# quick-xml: feed-rs and librqbit-upnp require 0.37; ecosystem uses 0.39
{ name = "quick-xml", version = "0.37" },
{ name = "quick-xml", version = "0.39" },
# block-buffer: digest 0.10 (transitive) uses 0.10.x; digest 0.11 (sha2 0.11) uses 0.12.x
{ name = "block-buffer", version = "0.10" },
{ name = "block-buffer", version = "0.12" },
# bitflags: kqueue-sys (via notify) requires 1.x; most of the ecosystem uses 2.x
{ name = "bitflags", version = "1" },
# crypto-common: digest 0.10 (transitive) uses 0.1.x; digest 0.11 (sha2 0.11) uses 0.2.x
{ name = "crypto-common", version = "0.1" },
{ name = "crypto-common", version = "0.2" },
# const-oid: der/pkcs crates (via jsonwebtoken) pin 0.9.x; sha2 0.11 transitively pulls 0.10.x
{ name = "const-oid", version = "0.9" },
{ name = "const-oid", version = "0.10" },
# cpufeatures: sha/aes crates pull 0.2.x; chacha20 (via rand 0.10) requires 0.3.x
{ name = "cpufeatures", version = "0.2" },
{ name = "cpufeatures", version = "0.3" },
# digest: argon2/jsonwebtoken/sqlx still on 0.10.x; sha2 0.11 pulls digest 0.11.x
{ name = "digest", version = "0.10" },
{ name = "digest", version = "0.11" },
# foldhash: hashbrown 0.15 (sqlx) pulls 0.1.x; hashbrown 0.16 (governor/indexmap) pulls 0.2.x
{ name = "foldhash", version = "0.1" },
{ name = "foldhash", version = "0.2" },
# generic-array: size_format (via librqbit) pins 0.12.x; digest/crypto crates use 0.14.x
{ name = "generic-array", version = "0.12" },
{ name = "generic-array", version = "0.14" },
# getrandom: ring/jsonwebtoken pin 0.2.x; governor/cc pull 0.3.x; rand 0.10 / tempfile use 0.4.x
{ name = "getrandom", version = "0.2" },
{ name = "getrandom", version = "0.3" },
{ name = "getrandom", version = "0.4" },
# hashbrown: dashmap pins 0.14.x; sqlx/hashlink require 0.15.x; governor/indexmap use 0.16.x
{ name = "hashbrown", version = "0.14" },
{ name = "hashbrown", version = "0.15" },
{ name = "hashbrown", version = "0.16" },
# hex: crypto-hash (via librqbit-sha1-wrapper) pins 0.3.x; librqbit/sqlx use 0.4.x
{ name = "hex", version = "0.3" },
{ name = "hex", version = "0.4" },
# r-efi: getrandom 0.3 pulls 5.x; getrandom 0.4 requires 6.x
{ name = "r-efi", version = "5" },
{ name = "r-efi", version = "6" },
# rand: jsonwebtoken/rsa pin 0.8.x; librqbit/governor use 0.9.x; exousia direct dep uses 0.10.x
{ name = "rand", version = "0.8" },
{ name = "rand", version = "0.9" },
{ name = "rand", version = "0.10" },
# rand_chacha: paired with rand 0.8 (0.3.x) and rand 0.9 (0.9.x)
{ name = "rand_chacha", version = "0.3" },
{ name = "rand_chacha", version = "0.9" },
# rand_core: three generations driven by the three rand majors above
{ name = "rand_core", version = "0.6" },
{ name = "rand_core", version = "0.9" },
{ name = "rand_core", version = "0.10" },
# sha2: transitive deps (sqlx, jsonwebtoken, argon2) still on 0.10.x; direct dep bumped to 0.11.x
{ name = "sha2", version = "0.10" },
{ name = "sha2", version = "0.11" },
# thiserror/thiserror-impl: tokio-socks pins 1.x; most of the ecosystem has moved to 2.x
{ name = "thiserror", version = "1" },
{ name = "thiserror-impl", version = "1" },
# windows-sys: ring requires 0.52.x; notify requires 0.60.x; anstream/dirs/rustix use 0.61.x
{ name = "windows-sys", version = "0.52" },
{ name = "windows-sys", version = "0.60" },
{ name = "windows-sys", version = "0.61" },
# windows-targets: paired with windows-sys — 0.52.x (ring) vs 0.53.x (notify / windows-sys 0.61)
{ name = "windows-targets", version = "0.52" },
{ name = "windows-targets", version = "0.53" },
# windows_* arch/abi sub-crates: same split as windows-targets above
{ name = "windows_aarch64_gnullvm", version = "0.52" },
{ name = "windows_aarch64_gnullvm", version = "0.53" },
{ name = "windows_aarch64_msvc", version = "0.52" },
{ name = "windows_aarch64_msvc", version = "0.53" },
{ name = "windows_i686_gnu", version = "0.52" },
{ name = "windows_i686_gnu", version = "0.53" },
{ name = "windows_i686_gnullvm", version = "0.52" },
{ name = "windows_i686_gnullvm", version = "0.53" },
{ name = "windows_i686_msvc", version = "0.52" },
{ name = "windows_i686_msvc", version = "0.53" },
{ name = "windows_x86_64_gnu", version = "0.52" },
{ name = "windows_x86_64_gnu", version = "0.53" },
{ name = "windows_x86_64_gnullvm", version = "0.52" },
{ name = "windows_x86_64_gnullvm", version = "0.53" },
{ name = "windows_x86_64_msvc", version = "0.52" },
{ name = "windows_x86_64_msvc", version = "0.53" },
]