-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathdeny.toml
More file actions
54 lines (49 loc) · 2.39 KB
/
Copy pathdeny.toml
File metadata and controls
54 lines (49 loc) · 2.39 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
[graph]
all-features = true
[sources]
unknown-registry = "deny"
[bans]
deny = [
{ name = "openssl-sys", reason = "increases complexity for foreign binding compilation and bundle size" },
{ name = "openssl", reason = "increases complexity for foreign binding compilation and bundle size" },
{ crate = "metrics", deny-multiple-versions = true, reason = "metrics crate uses a global recorder - multiple versions may break metrics silently" },
]
[licenses]
version = 2
confidence-threshold = 1.0
# List of explicitly allowed licenses
# See https://spdx.org/licenses/ for list of possible licenses
allow = [
"0BSD",
"Apache-2.0 WITH LLVM-exception",
"Apache-2.0",
"BSD-2-Clause",
# "BSD-2-Clause-Patent",
"BSD-3-Clause",
"BSL-1.0",
"CC0-1.0",
"CDLA-Permissive-2.0",
"ISC",
"MIT",
"MPL-2.0", # Although this is copyleft, it is scoped to modifying the original files
"OpenSSL",
"Unicode-3.0",
"Unlicense",
"Zlib",
]
[advisories]
ignore = [
"RUSTSEC-2024-0388", # Unmaintained `derivative` (2024-11-22)
"RUSTSEC-2024-0436", # Unmaintained `paste` (2025-04-04)
"RUSTSEC-2025-0055", # `tracing-subscriber` < 0.3.20, requires bumps on `semaphore-rs` (and Ark deps) (2025-09-09)
"RUSTSEC-2023-0089", # Unmaintained `atomic-polyfill` (2025-04-29)
"RUSTSEC-2025-0057", # Unmaintained `fxhash` (2026-04-10), requires bumps on `provekit`
"RUSTSEC-2025-0141", # Unmaintained `bincode` (2026-04-10), requires bumps on `provekit`
"RUSTSEC-2026-0074", # `libcrux-sha3` via testcontainers->russh; dev-only, does not affect our usage (2026-03-26)
"RUSTSEC-2026-0097", # Unsoundness in `rand@0.8.5` (2026-04-11), multiple upstream deps on `rand`. Not directly using custom logger
"RUSTSEC-2026-0112", # `astral-tokio-tar` PAX header desync; via testcontainers, dev-only, does not affect our usage (2026-04-27)
"RUSTSEC-2026-0113", # `astral-tokio-tar` chmod-via-symlink in `unpack_in`; via testcontainers, dev-only, does not affect our usage (2026-04-27)
"RUSTSEC-2026-0153", # russh-cryptovec broken, via testcontainers, dev-only, does not affect our usage (2026-06-02)
"RUSTSEC-2026-0154", # russh-cryptovec broken, via testcontainers, dev-only, does not affect our usage (2026-06-02)
"RUSTSEC-2026-0173" # Unmaintained `proc-macro-error2`; transitive via alloy-sol-macro, no safe upgrade available (2026-06-08)
]