-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdeny.toml
More file actions
40 lines (36 loc) · 776 Bytes
/
deny.toml
File metadata and controls
40 lines (36 loc) · 776 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
28
29
30
31
32
33
34
35
36
37
38
39
40
[graph]
# cargo-deny is really only ever intended to run on the "normal" tier-1 targets
targets = [
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
]
all-features = true
[advisories]
unmaintained = "workspace"
unsound = "all"
ignore = []
[bans]
multiple-versions = "allow"
wildcards = 'deny'
highlight = "all"
deny = [
{ crate = "openssl", use-instead = "rustls" },
{ crate = "openssl-sys", use-instead = "rustls" },
]
[sources]
unknown-registry = "deny"
unknown-git = "deny"
[licenses]
# We want really high confidence when inferring licenses from text
confidence-threshold = 1.0
allow = [
"Apache-2.0 WITH LLVM-exception",
"Apache-2.0",
"BSD-3-Clause",
"ISC",
"MIT",
"Unicode-3.0",
"Zlib",
]
exceptions = []