forked from chainwayxyz/citrea
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdeny.toml
More file actions
53 lines (49 loc) · 1.42 KB
/
Copy pathdeny.toml
File metadata and controls
53 lines (49 loc) · 1.42 KB
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
[licenses]
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",
"chainwayxyz",
"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 = []
[advisories]
ignore = [
"RUSTSEC-2024-0388", # Unmaintained derivative crate
"RUSTSEC-2024-0384", # Unmaintained instant crate
"RUSTSEC-2024-0436", # Unmaintained paste crate
"RUSTSEC-2025-0012", # Unmaintained backoff crate
"RUSTSEC-2025-0055", # Ignore until risc0 update
"RUSTSEC-2023-0071", # Ignore rsa 0.9.8 until a version that fixes the issue is available.
"RUSTSEC-2025-0052", # Ignore async-std being discontinued. httpmock uses it, which in turn is used by boundless market.
"RUSTSEC-2025-0073", # Ignore alloy-dyn-abi until we are able to update to 1.4.1
]