generated from EmbarkStudios/opensource-template
-
Notifications
You must be signed in to change notification settings - Fork 11
/
deny.toml
40 lines (35 loc) · 886 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
[graph]
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
]
[advisories]
yanked = "deny"
ignore = []
[bans]
multiple-versions = "deny"
deny = ["chrono"]
skip = [
# Older version only used by examples/sniff
{ name = "bitflags", version = "=1.3.2" },
]
skip-tree = [{ crate = "windows-sys:<0.59.0", reason = "the usual" }]
[sources]
unknown-registry = "deny"
unknown-git = "deny"
required-git-spec = "rev"
allow-git = []
[sources.allow-org]
github = ["EmbarkStudios"]
[licenses]
private = { ignore = true, registries = ["embark"] }
confidence-threshold = 0.92
allow = [
"Apache-2.0", # https://tldrlegal.com/license/apache-license-2.0-(apache-2.0)
"MIT", # https://tldrlegal.com/license/mit-license
"Unicode-3.0",
]
exceptions = []