-
Notifications
You must be signed in to change notification settings - Fork 160
Expand file tree
/
Copy pathdeny.toml
More file actions
66 lines (60 loc) · 1.64 KB
/
Copy pathdeny.toml
File metadata and controls
66 lines (60 loc) · 1.64 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
54
55
56
57
58
59
60
61
62
63
64
65
66
# cargo-deny configuration for StarForge
# Docs: https://embarkstudios.github.io/cargo-deny/
[graph]
targets = [
{ triple = "x86_64-unknown-linux-gnu" },
{ triple = "x86_64-apple-darwin" },
{ triple = "x86_64-pc-windows-msvc" },
]
[advisories]
version = 2
ignore = [
# rustls-webpki 0.100/0.101 pulled in transitively via pinned ureq =2.7.1.
"RUSTSEC-2026-0098",
"RUSTSEC-2026-0099",
"RUSTSEC-2026-0104",
# number_prefix unmaintained; pulled in via indicatif. No safe upgrade.
"RUSTSEC-2025-0119",
# derivative + paste unmaintained; both are build-time proc-macros reached
# through ark-ec / ark-ff under the soroban-sdk dev-dependency. Dev-only and
# not linked into the shipped binary; no upgrade path until soroban-sdk moves.
"RUSTSEC-2024-0388",
"RUSTSEC-2024-0436",
# rustls-pemfile unmaintained in 1.0.4; reqwest 0.11 requires it.
# Superseded in reqwest 0.12, which is a breaking change for this crate.
"RUSTSEC-2025-0134",
# anyhow downcast_mut
"RUSTSEC-2026-0190",
]
[licenses]
version = 2
confidence-threshold = 0.8
allow = [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Unicode-3.0",
"MPL-2.0",
"Zlib",
"OpenSSL",
"CC0-1.0",
"BSL-1.0",
"CDLA-Permissive-2.0",
]
# ring 0.16.x has no license field; clarify it manually.
[[licenses.clarify]]
name = "ring"
version = "=0.16.20"
expression = "OpenSSL"
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
[bans]
multiple-versions = "warn"
wildcards = "deny"
deny = []
skip = []
[sources]
unknown-registry = "deny"
unknown-git = "deny"