-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeny.toml
More file actions
76 lines (70 loc) · 2.15 KB
/
Copy pathdeny.toml
File metadata and controls
76 lines (70 loc) · 2.15 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
70
71
72
73
74
75
76
# cargo-deny config. Run via `cargo deny check` (or `just deny`).
[graph]
all-features = false
no-default-features = false
[output]
feature-depth = 1
[advisories]
yanked = "deny"
ignore = [
# GTK3 unmaintained - pulled in transitively by Tauri 2 on Linux.
# Tauri ecosystem migration to GTK4 is upstream-tracked; nothing
# to do at our layer.
"RUSTSEC-2024-0411",
"RUSTSEC-2024-0412",
"RUSTSEC-2024-0413",
"RUSTSEC-2024-0414",
"RUSTSEC-2024-0415",
"RUSTSEC-2024-0416",
"RUSTSEC-2024-0417",
"RUSTSEC-2024-0418",
"RUSTSEC-2024-0419",
"RUSTSEC-2024-0420",
# Other unmaintained transitive deps inherited from the Tauri / Linux
# ecosystem (gtk-rs ATK / GDK / pango / proc-macro-error etc.). Tracked
# upstream; nothing actionable at our layer.
"RUSTSEC-2024-0370",
"RUSTSEC-2025-0075",
"RUSTSEC-2025-0080",
"RUSTSEC-2025-0081",
"RUSTSEC-2025-0098",
"RUSTSEC-2025-0100",
# `paste` (proc-macro, build-time only, not shipped in the binary) is
# unmaintained but has no reported vulnerability and no safe replacement.
# Pulled in transitively by `boa_string` (the embedded JS engine used for
# PAC proxy evaluation, issue #34); nothing actionable at our layer.
"RUSTSEC-2024-0436",
]
[licenses]
# M9b (SPEC s16 / P2-1): the `os_info` crate (telemetry coarse OS version) is
# MIT-licensed, already covered by the "MIT" allowance below - no new license
# allowance is required, and `cargo deny check` stays green with it added.
allow = [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Unicode-3.0",
"Unicode-DFS-2016",
"Zlib",
"MPL-2.0",
"CC0-1.0",
"0BSD",
"OpenSSL",
"BSL-1.0",
"CDLA-Permissive-2.0",
]
confidence-threshold = 0.8
[bans]
multiple-versions = "allow"
wildcards = "deny"
# Workspace-internal `path = "../..."` deps don't carry a version field
# in our crate manifests; that's intentional, not a wildcard escape.
allow-wildcard-paths = true
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = []