-
Notifications
You must be signed in to change notification settings - Fork 88
/
deny.toml
42 lines (37 loc) · 810 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
# Adapted from https://github.com/bevyengine/bevy/blob/main/deny.toml.
[advisories]
version = 2
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
ignore = [
"RUSTSEC-2022-0048", # xml-rs unmaintained
]
yanked = "deny"
[licenses]
version = 2
allow = [
"MIT",
"MIT-0",
"Apache-2.0",
"BSD-3-Clause",
"ISC",
"Zlib",
"0BSD",
"BSD-2-Clause",
"CC0-1.0",
]
exceptions = [
{ name = "unicode-ident", allow = ["Unicode-DFS-2016", "Unicode-3.0"] },
]
[[licenses.clarify]]
expression = "MIT"
license-files = []
name = "stretch"
[bans]
multiple-versions = "allow"
wildcards = "allow"
[sources]
allow-git = ["https://github.com/bevyengine/bevy"]
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
unknown-git = "deny"
unknown-registry = "deny"