-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deny.toml
41 lines (35 loc) · 973 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
# Lifted mostly from Bevy v0.6.0 under MIT OR Apache-2.0.
# See <https://github.com/bevyengine/bevy/blob/458cb7a9e93dab3127bb99ce7bf8cfc3af18851d/deny.toml>.
[advisories]
version = 2
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
yanked = "deny"
ignore = [
# Format: "RUSTSEC-YYYY-NNNN", # why - what - <link to issue>
]
[licenses]
version = 2
allow = [
"MIT",
"Apache-2.0",
]
# [[licenses.clarify]]
# name = "a-crate-name"
# expression = "e.g. MIT"
# license-files = [] # Fill in as necessary
[bans]
multiple-versions = "deny"
wildcards = "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"]