-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDeny.toml
38 lines (35 loc) · 836 Bytes
/
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
[graph]
targets = [
{ triple = "aarch64-apple-darwin" },
{ triple = "aarch64-pc-windows-msvc" },
{ triple = "aarch64-unknown-linux-gnu" },
{ triple = "x86_64-apple-darwin" },
{ triple = "x86_64-pc-windows-msvc" },
{ triple = "x86_64-unknown-linux-gnu" },
]
[licenses]
allow = [
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-3-Clause",
"BSL-1.0",
"CC0-1.0",
"GPL-3.0",
"ISC",
"MIT",
"MPL-2.0",
"Unicode-3.0",
"Zlib",
]
exceptions = [{ allow = ["OpenSSL"], crate = "ring" }]
[[licenses.clarify]]
crate = "ring"
expression = "ISC AND MIT AND OpenSSL"
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
[bans]
wildcards = "deny"
allow-wildcard-paths = true
skip-tree = [
{ name = "windows-sys", version = "*" },
{ name = "syn", version = "*" },
]