-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeny.toml
51 lines (47 loc) · 873 Bytes
/
deny.toml
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
[graph]
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
]
[advisories]
ignore = ["RUSTSEC-2024-0388"]
[licenses]
allow = [
"Apache-2.0",
"BSD-3-Clause",
"ISC",
"MIT",
"MPL-2.0",
"Unicode-3.0",
"Zlib",
]
[licenses.private]
ignore = true
[bans]
skip = [
"rustls-pemfile@1",
"syn@1",
]
skip-tree = [
{ crate = "[email protected]", depth = 2 },
{ crate = "thiserror@1", depth = 2 },
]