-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
deny.toml
53 lines (50 loc) · 1.01 KB
/
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
52
53
[advisories]
ignore = ["RUSTSEC-2024-0388"]
[licenses]
allow = [
"Apache-2.0",
"BSD-3-Clause",
"ISC",
"MIT",
"MPL-2.0",
"Unicode-3.0",
]
exceptions = [
{ crate = "ring", allow = ["OpenSSL"] },
{ crate = "togglebot", allow = ["AGPL-3.0"] },
]
[[licenses.clarify]]
name = "ring"
version = "*"
expression = "MIT AND ISC AND OpenSSL"
license-files = [
{ path = "LICENSE", hash = 0xbd0eed23 },
]
[bans]
skip = [
"base64@0.21",
"bitflags@1",
"hashbrown@0.14",
"http@0.2",
"http-body@0.4",
"hyper@0.14",
"hyper-rustls@0.24",
"reqwest@0.11",
"rustls@0.21",
"rustls@0.22",
"rustls-pemfile@1",
"rustls-webpki@0.101",
"syn@1",
"sync_wrapper@0.1",
"tokio-rustls@0.24",
"tokio-rustls@0.25",
"tokio-tungstenite@0.21",
"tower@0.4",
"tungstenite@0.21",
"webpki-roots@0.25",
]
skip-tree = [
{ crate = "thiserror@1", depth = 2 },
{ crate = "windows-sys@0.48", depth = 3 },
{ crate = "windows-sys@0.52", depth = 3 },
]