-
Notifications
You must be signed in to change notification settings - Fork 48
/
deny.toml
49 lines (41 loc) · 1.09 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
[advisories]
ignore = [
# chrono depends on time 0.1, which is not patched
"RUSTSEC-2020-0071",
# webpki 0.21.4 only used by aws-smithy-client 0.41.0 in our deprecated
# generated clients. This is used only for type ser/de and old tests.
"RUSTSEC-2023-0052",
]
[licenses]
default = "deny"
unlicensed = "deny"
copyleft = "deny"
allow = [
"Apache-2.0",
"BSD-3-Clause",
"ISC",
"MIT",
"MPL-2.0",
"CC0-1.0",
]
# We use the same config to scan multiple projects
unused-allowed-license = "allow"
[[licenses.exceptions]]
name = "unicode-ident"
allow = ["Unicode-DFS-2016"]
[[licenses.exceptions]]
name = "ring"
allow = ["OpenSSL"]
[[licenses.exceptions]]
name = "portpicker"
allow = ["Unlicense"]
# See https://github.com/EmbarkStudios/buildkite-jobify/blob/a1b953b03f3330e499b1af47cc2dc38bd777da7c/deny.toml#LL27C1-L38C1
[[licenses.clarify]]
name = "ring"
expression = "ISC AND MIT AND OpenSSL"
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
# The OpenAPI generator is licensed as an Unlicense, so we can't relicense
# under MIT.
[[licenses.exceptions]]
name = "rivet-api"
allow = ["Unlicense"]