-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathdeny.toml
More file actions
72 lines (67 loc) · 2.13 KB
/
deny.toml
File metadata and controls
72 lines (67 loc) · 2.13 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
# cargo-deny configuration
# Run with: cargo deny check
[graph]
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-pc-windows-msvc",
]
[licenses]
allow = [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"OpenSSL",
"Zlib",
"Unicode-3.0",
"CC0-1.0",
"MPL-2.0",
"CDLA-Permissive-2.0",
"MIT-0",
]
confidence-threshold = 0.8
[bans]
multiple-versions = "warn"
wildcards = "deny"
highlight = "all"
[advisories]
db-path = "target/cargo-deny/advisory-dbs"
unmaintained = "all"
yanked = "warn"
ignore = [
# RUSTSEC-2024-0375 / `atty` unmaintained.
# Owner: @security-team, Expiry: 2026-06-30.
# Transitively pulled via `rust-xmlsec` (SAML stack); no maintained drop-in path yet.
"RUSTSEC-2024-0375",
# RUSTSEC-2025-0141 / `bincode` unmaintained.
# Owner: @policy-runtime, Expiry: 2026-06-30.
# `regorus` currently depends on `bincode` 2.x; migration tracked upstream.
"RUSTSEC-2025-0141",
# RUSTSEC-2024-0388 / `derivative` unmaintained.
# Owner: @deps-maintainers, Expiry: 2026-06-30.
# Pulled transitively through Alloy/EAS dependencies.
"RUSTSEC-2024-0388",
# RUSTSEC-2025-0134 / `rustls-pemfile` unmaintained.
# Owner: @messaging-platform, Expiry: 2026-06-30.
# Transitive via `async-nats`; migration to `rustls-pki-types` APIs tracked.
"RUSTSEC-2025-0134",
# RUSTSEC-2024-0436 / `paste` unmaintained.
# Owner: @deps-maintainers, Expiry: 2026-06-30.
# Pulled transitively through the Alloy stack; no maintained drop-in yet.
"RUSTSEC-2024-0436",
# RUSTSEC-2021-0145 / `atty` unsound unaligned read warning.
# Owner: @security-team, Expiry: 2026-06-30.
# Same transitive source as above; removed when `atty` is fully eliminated.
"RUSTSEC-2021-0145",
# RUSTSEC-2025-0119 / `number_prefix` unmaintained.
# Owner: @deps-maintainers, Expiry: 2026-06-30.
# Transitive via indicatif 0.17 → number_prefix 0.4; no patched release yet.
"RUSTSEC-2025-0119",
]
[sources]
unknown-registry = "deny"
unknown-git = "warn"