-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeny.toml
49 lines (44 loc) · 900 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
39
40
41
42
43
44
45
46
47
48
49
[advisories]
ignore = []
notice = "deny"
unmaintained = "warn"
vulnerability = "deny"
yanked = "deny"
# This library uses the MPL-2 license.
#
# See https://www.mozilla.org/en-US/MPL/2.0/permissive-code-into-mpl/
[licenses]
allow = [
"Apache-2.0",
"BSD-3-Clause",
"MIT",
"MPL-2.0",
"Unicode-DFS-2016",
]
default = "deny"
confidence-threshold = 1.0
unlicensed = "deny"
[bans]
allow = []
deny = [
# License is non-trivial
{ name = "ring" },
]
multiple-versions = "warn"
skip = []
skip-tree = [
# Redox is an obscure, Rust-based operating system
{ name = "redox_syscall" },
# simple-logger is on an old version
{ name = "windows-sys" }
]
wildcards = "deny"
[sources]
allow-git = []
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
unknown-git = "deny"
unknown-registry = "deny"
[sources.allow-org]
github = []
gitlab = []
bitbucket = []