-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathdeny.toml
More file actions
39 lines (34 loc) · 1.05 KB
/
deny.toml
File metadata and controls
39 lines (34 loc) · 1.05 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
[graph]
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-musl",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-pc-windows-msvc",
]
[advisories]
unmaintained = "workspace"
ignore = []
[bans]
multiple-versions = "deny"
deny = ["openssl-sys", "cmake", "windows"]
skip = [
{ crate = "getrandom@0.2.16", reason = "ring" },
{ crate = "hashbrown@0.15.5", reason = "petgraph" },
]
skip-tree = [
# Currently at four fucking versions now
{ crate = "windows-sys", reason = "as always" },
]
[licenses]
# We want really high confidence when inferring licenses from text
confidence-threshold = 0.93
allow = ["Apache-2.0", "MIT", "BSD-3-Clause", "ISC", "Unicode-3.0"]
exceptions = [
# ring uses code from multiple libraries but all with permissive licenses
# https://tldrlegal.com/license/openssl-license-(openssl)
{ allow = ["ISC", "MIT", "OpenSSL"], name = "ring" },
{ allow = ["CDLA-Permissive-2.0"], name = "webpki-roots" },
{ allow = ["Zlib"], name = "foldhash" },
]