-
Notifications
You must be signed in to change notification settings - Fork 0
/
deny.toml
74 lines (66 loc) · 1.77 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
targets = [
{ triple = "x86_64-unknown-linux-gnu" },
{ triple = "aarch64-unknown-linux-gnu" },
# { triple = "aarch64-apple-darwin" },
# { triple = "x86_64-apple-darwin" },
{ triple = "x86_64-pc-windows-gnu" },
]
[advisories]
vulnerability = "deny"
unmaintained = "deny"
notice = "deny"
unsound = "deny"
ignore = []
[bans]
multiple-versions = "warn"
wildcards = "deny"
highlight = "all"
deny = []
skip = [
# pulled in as wildcards
{ name = "asefile" },
{ name = "bevy_ase" },
]
[licenses]
unlicensed = "deny"
allow = ["Apache-2.0", "BSD-3-Clause", "CC0-1.0", "ISC", "MIT"]
deny = []
copyleft = "allow"
allow-osi-fsf-free = "neither"
default = "deny"
confidence-threshold = 0.95
[[licenses.exceptions]]
name = "adler32"
version = "1.2.0"
allow = ["Zlib"]
[[licenses.exceptions]]
name = "rusty-xinput"
version = "1.2.0"
allow = ["0BSD"]
[[licenses.clarify]]
# Clarification taken from encoding-rs' README
# https://github.com/hsivonen/encoding_rs/commit/b73366a88ef1968df2999d6d8d670b49763ad959
name = "encoding_rs"
expression = "(Apache-2.0 OR MIT) AND BSD-3-Clause"
license-files = [
{ path = "COPYRIGHT", hash = 0x39f8ad31 }
]
[[licenses.clarify]]
# stretch is licensed under MIT per its repository
# https://github.com/vislyhq/stretch/blob/6879b9a/LICENSE
# but for some reason the crate uploaded to crates.io
# doesn't have a LICENSE file
name = "stretch"
expression = "MIT"
license-files = []
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = [
"https://github.com/Arc-blroth/bevy_ase",
"https://github.com/Arc-blroth/bevy_vox_mesh",
"https://github.com/bonsairobo/block-mesh-rs",
"https://github.com/B-Reif/asefile",
"https://github.com/davidedmonds/dot_vox",
]