-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeny.toml
More file actions
151 lines (126 loc) · 3.37 KB
/
deny.toml
File metadata and controls
151 lines (126 loc) · 3.37 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# cargo-deny configuration
# See: https://embarkstudios.github.io/cargo-deny/
[advisories]
version = 2
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
ignore = [
# rustls-pemfile is unmaintained but used only in dev deps via testcontainers
# Migration to rustls-pki-types would require updating testcontainers
"RUSTSEC-2025-0134",
# Tauri 2.x transitive deps: gtk-rs GTK3 bindings are unmaintained (replaced by gtk4-rs)
# These are required by webkit2gtk which is Tauri's Linux WebView backend
"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",
# proc-macro-error is unmaintained, used by Tauri's macros
"RUSTSEC-2024-0370",
# fxhash is unmaintained, used by Tauri transitive deps
"RUSTSEC-2025-0057",
# unic-* crates are unmaintained, used by wry (Tauri's WebView)
"RUSTSEC-2025-0075",
"RUSTSEC-2025-0080",
"RUSTSEC-2025-0081",
"RUSTSEC-2025-0098",
"RUSTSEC-2025-0100",
# bincode is unmaintained, used by Tauri transitive deps
"RUSTSEC-2025-0141",
]
[licenses]
version = 2
# Allow commonly used permissive open source licenses
allow = [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Unicode-DFS-2016",
"Unicode-3.0",
"Zlib",
# Tauri 2.x transitive deps (kuchikiki, selectors via wry)
"MPL-2.0",
# Tauri 2.x transitive deps
"CDLA-Permissive-2.0",
]
confidence-threshold = 0.8
# Allow licenses for workspace members without explicit license field
[[licenses.clarify]]
name = "form-forge-api"
expression = "MIT OR Apache-2.0"
license-files = []
[[licenses.clarify]]
name = "common"
expression = "MIT OR Apache-2.0"
license-files = []
[[licenses.clarify]]
name = "common_telemetry"
expression = "MIT OR Apache-2.0"
license-files = []
[[licenses.clarify]]
name = "common_pdf"
expression = "MIT OR Apache-2.0"
license-files = []
[[licenses.clarify]]
name = "sheets_core"
expression = "MIT OR Apache-2.0"
license-files = []
[[licenses.clarify]]
name = "sheets_web"
expression = "MIT OR Apache-2.0"
license-files = []
[[licenses.clarify]]
name = "sheets_db"
expression = "MIT OR Apache-2.0"
license-files = []
[[licenses.clarify]]
name = "sheets_s3"
expression = "MIT OR Apache-2.0"
license-files = []
[[licenses.clarify]]
name = "sheets_pdf"
expression = "MIT OR Apache-2.0"
license-files = []
[[licenses.clarify]]
name = "sheets_fs"
expression = "MIT OR Apache-2.0"
license-files = []
[[licenses.clarify]]
name = "sheets_libsql"
expression = "MIT OR Apache-2.0"
license-files = []
[[licenses.clarify]]
name = "actions_core"
expression = "MIT OR Apache-2.0"
license-files = []
[[licenses.clarify]]
name = "actions_web"
expression = "MIT OR Apache-2.0"
license-files = []
[[licenses.clarify]]
name = "actions_pdf"
expression = "MIT OR Apache-2.0"
license-files = []
[[licenses.clarify]]
name = "native"
expression = "MIT OR Apache-2.0"
license-files = []
[[licenses.clarify]]
name = "native_lib"
expression = "MIT OR Apache-2.0"
license-files = []
[bans]
multiple-versions = "warn"
wildcards = "allow"
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]