-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeny.toml
48 lines (42 loc) · 1.11 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
# Lifted mostly from Bevy v0.6.0 under MIT OR Apache-2.0.
# See <https://github.com/bevyengine/bevy/blob/458cb7a9e93dab3127bb99ce7bf8cfc3af18851d/deny.toml>.
[advisories]
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
vulnerability = "deny"
unmaintained = "deny"
yanked = "deny"
notice = "deny"
ignore = [
# Format: "RUSTSEC-YYYY-NNNN", # why - what - <link to issue>
]
[licenses]
unlicensed = "deny"
copyleft = "deny"
allow = [
"MIT",
"Apache-2.0",
"Zlib",
"BSD-3-Clause",
"Unicode-DFS-2016",
]
default = "deny"
# [[licenses.clarify]]
# name = "a-crate-name"
# expression = "e.g. MIT"
# license-files = [] # Fill in as necessary
[bans]
multiple-versions = "warn" #TODO: deny
wildcards = "warn" #TODO: deny
highlight = "all"
# Certain crates/versions that will be skipped when doing duplicate detection.
skip = [
# Format: { name = "a-crate-name", version = "0.1" }, # from another-crate v0.26.0
]
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = []
[sources.allow-org]
github = ["Tamschi"]