forked from bpfman/bpfman
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeny.toml
More file actions
47 lines (42 loc) · 1.01 KB
/
deny.toml
File metadata and controls
47 lines (42 loc) · 1.01 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
[graph]
# cargo-deny is really only ever intended to run on the "normal" tier-1 targets
all-features = true
targets = [
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
]
[advisories]
ignore = [
"RUSTSEC-2023-0071", # no fix available
"RUSTSEC-2025-0021", # requires update of OTEL
"RUSTSEC-2025-0022", # requires an OpenSSL bump
]
unmaintained = "workspace"
[bans]
multiple-versions = "allow"
wildcards = 'deny'
[sources]
unknown-git = "deny"
unknown-registry = "deny"
[licenses]
allow = [
"Apache-2.0 WITH LLVM-exception",
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"MIT",
"MPL-2.0", # for webpki-roots
"OpenSSL",
"Unicode-3.0",
"Zlib",
]
confidence-threshold = 0.95
[[licenses.clarify]]
crate = "ring"
expression = "OpenSSL AND Apache-2.0 AND ISC"
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]