forked from StellarCheckMate/Checkmate-Escrow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeny.toml
More file actions
37 lines (33 loc) · 1.18 KB
/
Copy pathdeny.toml
File metadata and controls
37 lines (33 loc) · 1.18 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
[advisories]
ignore = [
# Transitive dependency of soroban-sdk's wasmi_core; the advisory itself
# states no safe upgrade is available, and we don't control this path.
{ id = "RUSTSEC-2024-0436", reason = "unmaintained `paste`, pulled in transitively by soroban-sdk -> wasmi_core; no safe upgrade available" },
]
[licenses]
# Deny all licenses unless they are in the allow list
allow = [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Unicode-3.0",
"CDLA-Permissive-2.0",
]
[bans]
# Workspace has many transitive dependency version overlaps (rand, syn,
# tower, etc. pulled in at different versions by different crates); this is
# normal for a workspace this size and not worth pinning down individually.
multiple-versions = "warn"
# Path dependencies between workspace crates (e.g. escrow -> oracle) are
# reported as "wildcard" since they carry no version requirement; that's
# expected for local workspace members, not a real supply-chain risk.
wildcards = "allow"
# List of explicitly allowed duplicate crates
allow = [
]
# Certain crates/versions that will be skipped when doing duplicate detection
skip = [
]