-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeny.toml
43 lines (39 loc) · 927 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
targets = []
[advisories]
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
vulnerability = "deny"
unmaintained = "warn"
yanked = "warn"
notice = "warn"
ignore = [
"RUSTSEC-2020-0071",
"RUSTSEC-2023-0053",
]
[licenses]
allow = [
"MIT",
"Apache-2.0",
"BSD-3-Clause",
"MPL-2.0",
"ISC",
"OpenSSL",
"Unicode-DFS-2016"
]
copyleft = "deny"
exceptions = [
{ allow = ["GPL-3.0"], name = "apca", version = "*" },
{ allow = ["GPL-3.0"], name = "http-endpoint", version = "*" },
{ allow = ["GPL-3.0"], name = "websocket-util", version = "*" },
{ allow = ["GPL-3.0"], name = "serde_variant", version = "*" },
{ allow = ["GPL-3.0"], name = "num-decimal", version = "*" },
]
[[licenses.clarify]]
name = "ring"
version = "*"
expression = "MIT AND ISC AND OpenSSL"
license-files = [
{ path = "LICENSE", hash = 0xbd0eed23 }
]
[licenses.private]
ignore = true