forked from BVE-Reborn/rend3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeny.toml
34 lines (29 loc) · 760 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
[licenses]
unlicensed = "deny"
allow-osi-fsf-free = "either"
allow = ["Apache-2.0", "MIT", "MPL-2.0", "LicenseRef-UFL-1.0", "Unlicense"]
copyleft = "allow"
[[licenses.clarify]]
name = "encoding_rs"
expression = "(Apache-2.0 OR MIT) AND BSD-3-Clause"
license-files = [{ path = "COPYRIGHT", hash = 972598577 }]
[bans]
multiple-versions = "deny"
wildcards = "allow"
skip = [
# gltf / reqwest
{ name = "base64", version = "0.13.1" },
# ndk_glue
{ name = "env_logger", version = "0.10.2" },
]
skip-tree = [
# winit brings in lots of duplicate deps that we can't fix
{ name = "winit", version = "0.29.4" },
]
[advisories]
vulnerability = "warn"
unmaintained = "warn"
ignore = []
[sources]
unknown-registry = "deny"
unknown-git = "allow"