forked from velopack/velopack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeny.toml
More file actions
44 lines (40 loc) · 1.7 KB
/
Copy pathdeny.toml
File metadata and controls
44 lines (40 loc) · 1.7 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
[graph]
all-features = false
[advisories]
ignore = [
# derivative is unmaintained but deeply embedded; tracked for replacement
{ id = "RUSTSEC-2024-0388", reason = "no drop-in replacement yet" },
# time segfault only affects Unix with specific env manipulation; not exploitable in our context
{ id = "RUSTSEC-2020-0071", reason = "only affects Unix setenv race; not exploitable in our usage" },
# ttf-parser is unmaintained; pulled in transitively via xdialog -> winit -> sctk-adwaita -> ab_glyph, no replacement available
{ id = "RUSTSEC-2026-0192", reason = "unmaintained transitive dep via xdialog/winit, no drop-in replacement" },
# quick-xml DoS advisories only affect parsing of untrusted XML; here quick-xml is used solely by wayland-scanner
# at build time to parse trusted local Wayland protocol files (via xdialog -> softbuffer). Latest wayland-scanner
# (0.31.10) still pins quick-xml ^0.39, so there is no upgrade path yet. Revisit when upstream bumps quick-xml.
{ id = "RUSTSEC-2026-0194", reason = "quick-xml DoS via wayland-scanner build-time codegen; trusted XML, no upgrade path" },
{ id = "RUSTSEC-2026-0195", reason = "quick-xml DoS via wayland-scanner build-time codegen; trusted XML, no upgrade path" },
]
[licenses]
allow = [
"MIT",
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Unicode-3.0",
"Zlib",
"MPL-2.0",
"0BSD",
"Unlicense",
"CDLA-Permissive-2.0",
"Apache-2.0 WITH LLVM-exception",
]
confidence-threshold = 0.8
[bans]
multiple-versions = "warn"
wildcards = "allow"
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = []