-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeny.toml
More file actions
39 lines (33 loc) · 885 Bytes
/
deny.toml
File metadata and controls
39 lines (33 loc) · 885 Bytes
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
# See docs: https://embarkstudios.github.io/cargo-deny/checks/index.html
[advisories]
vulnerability = "deny"
unmaintained = "deny"
yanked = "deny"
notice = "deny"
ignore = []
[bans]
multiple-versions = "deny"
skip = [
# { version = "=0.42.0", name = "crate_name_here" },
]
skip-tree = [
# { version = "=0.42.0", name = "crate_name_here", depth = 6 },
]
deny = []
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = []
[licenses]
unlicensed = "deny"
copyleft = "deny"
private = { ignore = true }
# Run `cargo deny list` to see which crates use which license
# and add them to this array if you accept them
allow = ["MIT", "Apache-2.0"]
deny = []
default = "deny"
allow-osi-fsf-free = "neither"
# We want really high confidence when inferring licenses from text
confidence-threshold = 0.93