-
-
Notifications
You must be signed in to change notification settings - Fork 971
Expand file tree
/
Copy pathdeny.toml
More file actions
62 lines (58 loc) · 1.49 KB
/
Copy pathdeny.toml
File metadata and controls
62 lines (58 loc) · 1.49 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
[graph]
targets = []
all-features = true
no-default-features = false
[advisories]
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
unmaintained = "workspace"
yanked = "deny"
ignore = [
# Pulled in through
# arboard ->
# wl-clipboard-rs ->
# wayland-client ->
# wayland-scanner ->
# quick-xml 0.39.4 <-- problematic
#
# No upstream patch. Runs only on client, no severe concern.
"RUSTSEC-2026-0194",
"RUSTSEC-2026-0195",
]
[licenses]
allow = [
"Apache-2.0",
"BSL-1.0",
"BSD-3-Clause",
"CDLA-Permissive-2.0",
"ISC",
"MIT",
"MPL-2.0",
"Unicode-3.0",
"Zlib",
]
confidence-threshold = 0.8
exceptions = [
# CC0-1.0 waives copyright but not patents; allow it only for notify.
{ crate = "notify", allow = ["CC0-1.0"] },
# 0BSD is a permissive, public-domain-equivalent license; it reaches us only
# through varint-rs (a transitive dependency of fjall's lsm-tree).
{ crate = "varint-rs", allow = ["0BSD"] },
]
[bans]
multiple-versions = "warn"
wildcards = "deny"
highlight = "all"
workspace-default-features = "allow"
external-default-features = "allow"
allow = []
deny = [
# Unmaintained with an unfixed UB bug (RUSTSEC-2025-0069). Replaced by daemonix.
{ crate = "daemonize", use-instead = "daemonix" },
]
skip = []
skip-tree = []
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]