-
Notifications
You must be signed in to change notification settings - Fork 145
Expand file tree
/
Copy pathdeny.toml
More file actions
27 lines (25 loc) · 882 Bytes
/
Copy pathdeny.toml
File metadata and controls
27 lines (25 loc) · 882 Bytes
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
[advisories]
# Security vulnerabilities in dependencies are denied by default in this
# version of cargo-deny; nothing to ignore currently.
ignore = [
# Transitive dependency of soroban-sdk (via wasmi_core / soroban-wasmi),
# not a direct dependency of this project. No upstream fix is available;
# revisit when soroban-sdk updates its wasmi dependency.
{ id = "RUSTSEC-2024-0436", reason = "unmaintained transitive dependency via soroban-sdk; no direct alternative available" },
]
[licenses]
# GPL-2.0/GPL-3.0/AGPL-3.0 etc. are excluded simply by not being listed here —
# cargo-deny denies any license not present in this allow list.
allow = [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Unicode-DFS-2016",
"Unicode-3.0",
]
[bans]
multiple-versions = "warn"
wildcards = "warn"