generated from EmbarkStudios/opensource-template
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathdeny.toml
58 lines (53 loc) · 1.17 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
targets = [
{ triple = "x86_64-unknown-linux-musl" },
{ triple = "x86_64-unknown-linux-gnu" },
{ triple = "aarch64-unknown-linux-musl" },
{ triple = "aarch64-unknown-linux-gnu" },
{ triple = "aarch64-apple-darwin" },
{ triple = "x86_64-pc-windows-msvc" },
]
all-features = true
[advisories]
vulnerability = "deny"
unmaintained = "deny"
yanked = "deny"
ignore = []
[licenses]
unlicensed = "deny"
allow = [
"MIT",
"Apache-2.0",
#"Apache-2.0 WITH LLVM-exception",
"MPL-2.0",
"ISC",
"BSD-3-Clause",
]
copyleft = "deny"
default = "deny"
exceptions = [
{ allow = [
"Unicode-DFS-2016",
], name = "unicode-ident" },
{ 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 = [{ name = "openssl" }, { name = "curl" }]
skip = [
# several users of this old version
{ name = "bitflags", version = "=1.3.2" },
]
skip-tree = [
# sigh
{ name = "windows-sys", version = "=0.48.0" },
]
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-git = []