-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeny.toml
49 lines (44 loc) · 1.05 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
[advisories]
ignore = []
version = 2
# 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",
]
confidence-threshold = 1.0
version = 2
[bans]
allow = []
deny = [
# License is non-trivial
{ name = "ring" },
]
multiple-versions = "deny"
skip = []
skip-tree = [
# Transitive dependency of two direct dependencies of passivized_htpasswd. Only used with tests.
{ name = "blowfish", version = "0.7.0" },
# mockito 1.2 still uses hyper 0.14
{ name = "mockito", version = "1.2.0" },
# Don't care about Redox operating system
{ name = "redox_syscall" },
# Tokio 1.35 and simple-logger 4.3 use this old dependency
{ name = "windows-sys", version = "0.48.0" },
]
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 = []