-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdeny.toml
49 lines (42 loc) · 1.06 KB
/
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
47
48
49
[graph]
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"x86_64-pc-windows-gnu",
]
all-features = true
[advisories]
version = 2
ignore = [
{ id = "RUSTSEC-2023-0071", reason = "we're decrypting public data with publicly available keys" },
]
[licenses]
version = 2
allow = [
"0BSD",
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"MIT",
"Unlicense",
"Zlib",
"ISC",
"MPL-2.0"
]
exceptions = [{ name = "unicode-ident", allow = ["Unicode-DFS-2016"] }]
[bans]
multiple-versions = "deny"
wildcards = "deny"
# Certain crates that we don't want multiple versions of in the dependency tree
deny = [
{ name = "bevy", deny-multiple-versions = true },
]
skip-tree = [
{ crate = "[email protected]", reason = "a foundational crate for many that bumps far too frequently to ever have a shared version" },
]
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = ["https://github.com/tremwil/utf16string.git"]