-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathdeny.toml
More file actions
34 lines (30 loc) · 774 Bytes
/
deny.toml
File metadata and controls
34 lines (30 loc) · 774 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
[advisories]
yanked = "deny"
[licenses]
allow = [
"Apache-2.0",
"BSD-3-Clause",
"ISC",
"LicenseRef-webpki",
"MIT",
"OpenSSL",
"Unicode-3.0",
]
confidence-threshold = 1.0
# XXX: Figure out how to deal with the Google-source test data
# https://github.com/briansmith/webpki/issues/148.
[[licenses.clarify]]
name = "rustls-webpki"
expression = "LicenseRef-webpki"
license-files = [
{ path = "LICENSE", hash = 0x001c7e6c },
]
[bans]
wildcards = "deny"
# Allow git/path dev-dependencies (like limbo-harness-support) without version specs
allow-wildcard-paths = true
[sources]
unknown-registry = "deny"
unknown-git = "deny"
# Allow git source for x509-limbo test harness (dev dependency only)
allow-git = ["https://github.com/C2SP/x509-limbo"]