-
Notifications
You must be signed in to change notification settings - Fork 0
/
deny.toml
41 lines (38 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
[graph]
# Collect metadata with `--all-features`.
all-features = true
[licenses]
allow = [
"Apache-2.0 WITH LLVM-exception",
"Apache-2.0",
"BSD-2-Clause",
"CC0-1.0",
"LGPL-3.0",
"MIT",
]
exceptions = [
{ allow = ["GPL-3.0"], crate = "xash3d-admin" },
{ allow = ["GPL-3.0"], crate = "xash3d-master" },
{ allow = ["GPL-3.0"], crate = "xash3d-query" },
{ allow = ["Unicode-DFS-2016"], crate = "unicode-ident" },
]
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = [
"https://github.com/rust-lang/crates.io-index"
]
allow-git = []
[bans]
# Deny multiple versions of the same crate.
multiple-versions = "deny"
# Deny if a crate version requirement is `*`.
wildcards = "deny"
# Skip duplicate detection for crates.
skip = [
{ crate = "[email protected]", reason = "dependency of [email protected] required for MSRV 1.56" },
]
# Skip duplicate detection for crate and transitive dependencies.
skip-tree = [
{ crate = "[email protected]", reason = "dependency of [email protected] required for MSRV 1.56" },
]