-
Notifications
You must be signed in to change notification settings - Fork 101
/
deny.toml
77 lines (69 loc) · 1.69 KB
/
deny.toml
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
77
[graph]
# Test supported features and targets
targets = [
{ triple = "x86_64-unknown-linux-gnu" },
{ triple = "aarch64-unknown-linux-gnu" },
]
features = ["tls-boring", "tls-ring"]
[advisories]
version = 2
[licenses]
version = 2
allow = ["Apache-2.0",
"CC-BY-3.0",
"ISC",
"AFL-2.1",
"AFL-3.0",
"Artistic-1.0",
"Artistic-2.0",
"Apache-1.1",
"BSD-1-Clause",
"BSD-2-Clause",
"BSD-3-Clause",
"0BSD",
"FTL",
"LPL-1.02",
"MS-PL",
"MIT",
"NCSA",
"OpenSSL",
"PHP-3.0",
"TCP-wrappers",
"W3C",
"Xnet",
"Zlib",
"Unicode-DFS-2016"]
unused-allowed-license = "allow"
# Deny cannot detect ring properly. Directly assign
[[licenses.clarify]]
name = "ring"
version = "*"
expression = "MIT AND ISC AND OpenSSL"
license-files = [
{ path = "LICENSE", hash = 0xbd0eed23 },
]
[bans]
skip = [
{ crate = "rand_core", version = "0.5.1", reason = "acceptable duplicate" },
{ crate = "rand", version = "0.7.3", reason = "acceptable duplicate" },
{ crate = "regex-syntax", version = "0.6.29", reason = "acceptable duplicate" },
{ crate = "regex-automata", version = "0.1.10", reason = "acceptable duplicate" },
{ crate = "rand_chacha", version = " 0.2.2", reason = "acceptable duplicate" },
{ crate = "base64" },
{ crate = "bitflags" },
{ crate = "fastrand" },
{ crate = "getrandom" },
{ crate = "hashbrown" },
{ crate = "http" },
{ crate = "http-body" },
{ crate = "idna" },
{ crate = "indexmap" },
{ crate = "itertools" },
{ crate = "memoffset" },
{ crate = "nix" },
{ crate = "heck" },
]
[sources]
allow-git = [
"https://github.com/janrueth/boring-rustls-provider",
]