-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeny.toml
More file actions
69 lines (61 loc) · 1.84 KB
/
deny.toml
File metadata and controls
69 lines (61 loc) · 1.84 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
# Cargo Deny Configuration for Meow Decoder
# Supply-chain security: License compliance, vulnerability scanning, dependency audit
#
# Run with: cargo deny check
# CI integration: .github/workflows/security-ci.yml
[graph]
targets = []
all-features = false
no-default-features = false
[advisories]
db-path = "~/.cargo/advisory-db"
ignore = [
# RUSTSEC-2023-0071: rsa 0.9.10 - Marvin Attack timing sidechannel
# Status: No fixed upgrade available
# Mitigation: Comes from yubikey dependency which we use only for ECDH key derivation,
# not for RSA operations. The vulnerable RSA code path is not exercised.
# Risk: LOW - Not using RSA encryption/decryption
"RUSTSEC-2023-0071",
# RUSTSEC-2024-0436: paste 1.0.15 - unmaintained crate
# Status: Transitive dependency from cryptoki
# Mitigation: paste is a compile-time macro crate with no runtime security implications.
# Risk: LOW - Compile-time only, no runtime attack surface
"RUSTSEC-2024-0436",
# Note: RUSTSEC-2026-0009 (time crate) was fixed by updating to time 0.3.47
# via workspace dependency in Cargo.toml. No exception needed.
]
[licenses]
allow = [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"CC0-1.0",
"CC-BY-NC-SA-4.0",
"Zlib",
"MPL-2.0",
"Unicode-3.0",
]
confidence-threshold = 0.8
private = { ignore = true }
[[licenses.clarify]]
name = "ring"
expression = "MIT AND ISC AND OpenSSL"
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
[bans]
multiple-versions = "warn"
wildcards = "allow"
highlight = "all"
deny = []
skip = []
skip-tree = []
[sources]
unknown-registry = "deny"
unknown-git = "warn"
allow-git = [
"https://github.com/RustCrypto/KEMs",
"https://github.com/RustCrypto/signatures",
"https://github.com/RustCrypto/traits",
]