-
-
Notifications
You must be signed in to change notification settings - Fork 415
Expand file tree
/
Copy pathdeny.toml
More file actions
76 lines (65 loc) · 2.34 KB
/
Copy pathdeny.toml
File metadata and controls
76 lines (65 loc) · 2.34 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
67
68
69
70
71
72
73
74
75
76
[graph]
# examples sometimes lag behind as they use higher level dependencies
# we exclude these from the check because they are not part of our
# actual dependency tree
exclude = ["kube-examples"]
[advisories]
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
# these are deprecated, but not super helpful for us
# https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html#the-version-field-optional
# remove them when we have to
yanked = "warn"
[licenses]
# See https://spdx.org/licenses/ for list of possible licenses
# [possible values: any SPDX 3.11 short identifier (+ optional exception)].
confidence-threshold = 1.0
# We are beholden to https://github.com/cncf/foundation/blob/master/allowed-third-party-license-policy.md#approved-licenses-for-allowlist
allow = [
"MIT",
"Apache-2.0",
"BSD-3-Clause",
"ISC",
# Blanket addition for Unicode-3.0 libs for optional features (affects many deps, but it's a very clean license)
# https://github.com/unicode-org/icu4x/blob/main/LICENSE
"Unicode-3.0",
# Pulled in via aws_lc_rs when using rustls-tls and aws-lc-rs features
# https://openssl-library.org/source/license/index.html
"OpenSSL",
# Pulled in via hashbrown through its foldhash dependency
"Zlib",
]
exceptions = [
# Pulled in via hyper-rustls when using the webpki-roots feature,
# which is off by default.
{ allow = ["CDLA-Permissive-2.0", "MPL-2.0"], crate = "webpki-roots" },
# Bundled CA roots pulled in via rustls-platform-verifier (used as the
# default no-CA trust source on the rustls-tls stack).
{ allow = ["CDLA-Permissive-2.0"], crate = "webpki-root-certs" },
]
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
# allow-git = ["https://github.com/Arnavion/k8s-openapi"]
[bans]
multiple-versions = "deny"
[[bans.skip-tree]]
name = "windows-sys"
# currently multiple version of thiserror in flight due to its major bump
[[bans.skip]]
name = "thiserror"
[[bans.skip]]
name = "thiserror-impl"
[[bans.skip]]
# ahash hasn't had a release in 12mo
name = "getrandom"
[[bans.skip]]
# ahash hasn't had a release in 12mo
name = "r-efi"
[[bans.skip]]
# tungstenite needs to bump rand
name = "rand_core"
[[bans.skip]]
# need some time to get the whole ecosystem to syn 3
name = "syn"