-
Notifications
You must be signed in to change notification settings - Fork 28
/
deny.toml
47 lines (42 loc) · 1013 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
[licenses]
# TODO: figure this out after refactoring
allow = [
"Apache-2.0",
# "Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"BSL-1.0",
"CC0-1.0",
# "GPL-3.0",
"ISC",
# "LGPL-3.0",
"MIT",
"MITNFA",
# "MPL-2.0",
"OpenSSL",
"Unicode-3.0",
"Unicode-DFS-2016",
# "Unlicense",
"Zlib",
]
[[licenses.clarify]]
name = "ring"
# ring is derived from BoringSSL and has a bit of a special licensing situation,
# but we can effectively treat is as OpenSSL-like licensing.
expression = "OpenSSL"
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
[sources.allow-org]
github = [
"paradigmxyz",
"alloy-rs",
"penumbra-zone",
]
[bans]
multiple-versions = "allow"
# We'd prefer to use Rustls instead of OpenSSL; this helps up from accidentally
# using OpenSSL. See <https://github.com/Sovereign-Labs/sovereign-sdk-wip/issues/352>.
deny = [{ name = "native-tls" }, { name = "openssl" }]
[advisories]
ignore = [
"RUSTSEC-2024-0344", # curve25519-dalek 4.1.2
]