-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeny.toml
43 lines (38 loc) · 987 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
[licenses]
allow = [
# permissive licenses
"0BSD",
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"BSL-1.0",
"ISC",
"MIT",
"Unicode-3.0",
"Unlicense",
"Zlib",
# permissive license with unclear patent grant
"CC0-1.0",
# weak/limited copyleft licenses
"MPL-2.0",
"OpenSSL", # https://en.wikipedia.org/wiki/OpenSSL#Licensing
]
# Clearify licence: https://github.com/briansmith/ring/issues/902
# Plan to remove OpenSSL: https://github.com/briansmith/ring/issues/1827
[[licenses.clarify]]
expression = "ISC AND MIT AND OpenSSL"
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
name = "ring"
[advisories]
ignore = [
# idna url parsing is not used, is a transient dependency from the model - https://rustsec.org/advisories/RUSTSEC-2024-0421
"RUSTSEC-2024-0421",
]
yanked = "warn"
[bans]
multiple-versions = "allow"
[sources]
allow-git = [
"https://github.com/cowprotocol/services",
"https://github.com/cakevm/cowprotocol-solvers-dto-alloy"
]