-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeny.toml
More file actions
43 lines (39 loc) · 1.04 KB
/
deny.toml
File metadata and controls
43 lines (39 loc) · 1.04 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
[advisories]
version = 2
ignore = [
# paste is a dev-dependency used only for test macro identifier
# concatenation. No security concern from an unmaintained proc-macro
# in test code.
"RUSTSEC-2024-0436",
]
[licenses]
version = 2
allow = [
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-3-Clause",
"CDLA-Permissive-2.0",
"GPL-3.0-or-later",
"ISC",
"MIT",
"Unicode-3.0",
]
[bans]
multiple-versions = "deny"
# Transitive duplicates from reqwest's dependency chain (ring vs socket2/tokio
# pull different windows-sys versions). Not actionable from this crate.
skip = [
{ crate = "windows-sys" },
{ crate = "windows-targets" },
{ crate = "windows_aarch64_gnullvm" },
{ crate = "windows_aarch64_msvc" },
{ crate = "windows_i686_gnu" },
{ crate = "windows_i686_gnullvm" },
{ crate = "windows_i686_msvc" },
{ crate = "windows_x86_64_gnu" },
{ crate = "windows_x86_64_gnullvm" },
{ crate = "windows_x86_64_msvc" },
]
[sources]
unknown-registry = "deny"
unknown-git = "deny"