forked from avstack/jibri-pod-controller
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeny.toml
46 lines (40 loc) · 963 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
targets = [{ triple = "x86_64-unknown-linux-musl" }]
[advisories]
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
vulnerability = "deny"
unmaintained = "deny"
yanked = "deny"
notice = "deny"
ignore = [
# Possible segfault in `time` and `chrono` if localtime_r is called while the environment is being mutated.
# We don't use functionality of either crate that would call this function.
"RUSTSEC-2020-0071",
"RUSTSEC-2020-0159",
]
[licenses]
unlicensed = "deny"
allow = []
deny = []
copyleft = "deny"
allow-osi-fsf-free = "either"
default = "deny"
confidence-threshold = 1.0
exceptions = []
[licenses.private]
ignore = true
registries = []
[bans]
multiple-versions = "deny"
wildcards = "deny"
highlight = "all"
allow = []
deny = []
skip = []
skip-tree = []
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
[sources.allow-org]
github = []