-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeny.toml
More file actions
54 lines (49 loc) · 1.51 KB
/
deny.toml
File metadata and controls
54 lines (49 loc) · 1.51 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
# cargo-deny configuration for CPoE workspace
# https://embarkstudios.github.io/cargo-deny/
[advisories]
version = 2
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
ignore = [
"RUSTSEC-2023-0071", # bincode unmaintained (transitive dep)
"RUSTSEC-2024-0384", # instant unmaintained (transitive dep)
"RUSTSEC-2024-0388", # paste unmaintained (transitive dep)
"RUSTSEC-2024-0436", # derivative unmaintained (transitive dep)
"RUSTSEC-2025-0141", # rsa Marvin attack (fixed in 0.10+; we use 0.9 for verification only)
"RUSTSEC-2026-0044", # aws-lc X.509 name constraints (upstream fix pending)
"RUSTSEC-2026-0048", # aws-lc CRL distribution point (upstream fix pending)
"RUSTSEC-2026-0049", # aws-lc (upstream fix pending)
]
[licenses]
version = 2
allow = [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Zlib",
"CC0-1.0",
"Unlicense",
"Unicode-3.0",
"Unicode-DFS-2016",
"OpenSSL",
"MPL-2.0",
"AGPL-3.0-only",
"CDLA-Permissive-2.0",
]
confidence-threshold = 0.8
# The CLI is AGPL-3.0-only (already in global allow list)
# The engine is SSPL-1.0 OR LicenseRef-Commercial; protocol+jitter stay Apache-2.0
[[licenses.exceptions]]
allow = ["SSPL-1.0"]
name = "cpoe"
[bans]
multiple-versions = "warn"
wildcards = "allow"
highlight = "all"
[sources]
unknown-registry = "warn"
unknown-git = "warn"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]