-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeny.toml
More file actions
50 lines (46 loc) · 1.02 KB
/
deny.toml
File metadata and controls
50 lines (46 loc) · 1.02 KB
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
# cargo-deny configuration
# https://embarkstudios.github.io/cargo-deny/
[advisories]
# Use v2 configuration format
version = 2
# Ignore advisories for specific IDs
ignore = []
[licenses]
# Use v2 configuration format
version = 2
# Allow commonly used permissive licenses
allow = [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"CC0-1.0",
"CDLA-Permissive-2.0",
"Unicode-DFS-2016",
"Unicode-3.0",
"OpenSSL",
"Zlib",
"MPL-2.0",
]
# Confidence threshold for license detection
confidence-threshold = 0.8
[bans]
# Lint level for when multiple versions of the same crate are detected
multiple-versions = "warn"
# Skip certain crates from multiple-version checks
skip = []
# Skip tree display for these crates
skip-tree = []
# Deny specific crates
deny = [
# Add any crates to deny here
]
[sources]
# Lint level for unknown registries
unknown-registry = "deny"
# Lint level for unknown git sources
unknown-git = "warn"
# Allow git sources from these domains
allow-git = []