forked from vleue/bevy_embedded_assets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deny.toml
54 lines (51 loc) · 1.58 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
50
51
52
53
54
[advisories]
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
vulnerability = "deny"
unmaintained = "deny"
yanked = "deny"
notice = "deny"
ignore = []
[licenses]
unlicensed = "deny"
allow = [
"MIT",
"Apache-2.0",
]
copyleft = "deny"
allow-osi-fsf-free = "neither"
default = "deny"
confidence-threshold = 0.8
exceptions = [
{ allow = ["BSD-3-Clause"], name = "instant" },
{ allow = ["Unicode-DFS-2016"], name = "unicode-ident" },
]
[bans]
multiple-versions = "deny"
# allowed while working with git deps
# wildcards = "deny"
# Certain crates/versions that will be skipped when doing duplicate detection.
skip = [
{ name = "hashbrown", version = "0.12" },
{ name = "indexmap", version = "1.9" },
{ name = "num_enum", version = "0.5" },
{ name = "num_enum_derive", version = "0.5" },
{ name = "regex-automata", version = "0.1" },
{ name = "regex-syntax", version = "0.6" },
{ name = "syn", version = "1.0" },
{ name = "windows-targets", version = "0.42" },
{ name = "windows_aarch64_gnullvm", version = "0.42" },
{ name = "windows_aarch64_msvc", version = "0.42" },
{ name = "windows_i686_gnu", version = "0.42" },
{ name = "windows_i686_msvc", version = "0.42" },
{ name = "windows_x86_64_gnu", version = "0.42" },
{ name = "windows_x86_64_gnullvm", version = "0.42" },
{ name = "windows_x86_64_msvc", version = "0.42" },
]
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = [
"https://github.com/bevyengine/bevy",
]