generated from EmbarkStudios/opensource-template
-
Notifications
You must be signed in to change notification settings - Fork 7
/
deny.toml
56 lines (51 loc) · 1.14 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
[graph]
targets = [
"x86_64-unknown-linux-musl",
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"aarch64-unknown-linux-gnu",
"aarch64-apple-darwin",
"x86_64-pc-windows-msvc",
]
all-features = true
[advisories]
yanked = "deny"
ignore = []
[licenses]
allow = [
"MIT",
"Apache-2.0",
"MPL-2.0",
"ISC",
"BSD-3-Clause",
"Unicode-3.0",
]
exceptions = [
{ allow = [
"OpenSSL",
], name = "ring" },
]
[[licenses.clarify]]
name = "ring"
expression = "MIT AND ISC AND OpenSSL"
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
[bans]
multiple-versions = "deny"
deny = [
"openssl",
# Unfortunately we can't ban this since some people want a curl client instead of reqwest
#"curl",
]
skip = [
{ crate = "[email protected]", reason = "gix uses this old version" },
{ crate = "[email protected]", reason = "system-configuration uses this old version" },
]
skip-tree = [
# sigh
{ crate = "[email protected]", reason = "gix depends on both the 1.0 and 2.0 versions" },
]
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-git = []