-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeny.toml
More file actions
45 lines (40 loc) · 963 Bytes
/
Copy pathdeny.toml
File metadata and controls
45 lines (40 loc) · 963 Bytes
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
# cargo-deny configuration (v2)
# Run: cargo deny check
# Install: cargo install cargo-deny
[graph]
targets = []
all-features = false
no-default-features = false
[advisories]
version = 2
ignore = [
"RUSTSEC-2024-0384", # instant unmaintained — transitive dep via mock_instant, no replacement yet
"RUSTSEC-2024-0436", # paste unmaintained — widely used, no security issue
"RUSTSEC-2025-0134", # rustls-pemfile unmaintained — transitive, migration to rustls-pki-types planned
]
[licenses]
version = 2
allow = [
"MIT",
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Unicode-3.0",
"Unicode-DFS-2016",
"Zlib",
"BSL-1.0",
"OpenSSL",
"MPL-2.0",
"CC0-1.0",
"0BSD",
]
confidence-threshold = 0.8
[bans]
multiple-versions = "warn"
wildcards = "allow"
[sources]
unknown-registry = "warn"
unknown-git = "warn"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = []