forked from LGFae/swww
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeny.toml
32 lines (29 loc) · 854 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
[advisories]
db-path = "~/.cargo/advisory-db"
db-urls = ["/~https://github.com/rustsec/advisory-db"]
yanked = "deny"
ignore = []
[bans]
multiple-versions = "warn"
wildcards = "warn"
highlight = "all"
# Certain crates/versions that will be skipped when doing duplicate detection.
skip = []
# Crate dependency trees that will be skipped when doing duplicate detection.
skip-tree = []
[licenses]
# The lint level for crates which do not have a detectable license
allow = [
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception", # used by the ravif crate
"BSD-2-Clause", # used by the ravif crate
"BSD-3-Clause",
"GPL-3.0",
"MIT",
"Unicode-DFS-2016",
]
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["/~https://github.com/rust-lang/crates.io-index"]
allow-git = ["/~https://github.com/SoftbearStudios/bitcode.git"]