forked from StarsForges/StarForge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeny.toml
More file actions
57 lines (51 loc) · 1.22 KB
/
Copy pathdeny.toml
File metadata and controls
57 lines (51 loc) · 1.22 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
# 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 = [
# ring 0.16.x pulled in transitively via pinned ureq =2.7.1; no upgrade path.
"RUSTSEC-2025-0009",
"RUSTSEC-2025-0010",
# 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",
]
[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",
]
# 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"