mirror of
https://github.com/bevyengine/bevy
synced 2024-11-23 05:03:47 +00:00
e84e391571
# Objective The `deny.toml` file defines some crates that are skipped for duplicate dependency detection, because the issues are deeper in the dependency tree and not easily fixable. However, two of those exceptions are no longer necessary. ## Solution Remove `hashbrown` and `mio` from the skipped crates, according to `cargo deny check` this is no longer needed.
54 lines
1.7 KiB
TOML
54 lines
1.7 KiB
TOML
[advisories]
|
|
db-path = "~/.cargo/advisory-db"
|
|
db-urls = ["https://github.com/rustsec/advisory-db"]
|
|
vulnerability = "deny"
|
|
unmaintained = "deny"
|
|
yanked = "deny"
|
|
notice = "deny"
|
|
ignore = [
|
|
"RUSTSEC-2020-0056", # from gilrs v0.8.1 - unmaintained - https://github.com/koute/stdweb/issues/403
|
|
]
|
|
|
|
[licenses]
|
|
unlicensed = "deny"
|
|
copyleft = "deny"
|
|
allow = [
|
|
"MIT",
|
|
"MIT-0",
|
|
"Apache-2.0",
|
|
"BSD-3-Clause",
|
|
"ISC",
|
|
"Zlib",
|
|
"0BSD",
|
|
"BSD-2-Clause",
|
|
"CC0-1.0",
|
|
]
|
|
exceptions = [
|
|
{ name = "unicode-ident", allow = ["Unicode-DFS-2016"] },
|
|
]
|
|
default = "deny"
|
|
|
|
[bans]
|
|
multiple-versions = "deny"
|
|
wildcards = "deny"
|
|
highlight = "all"
|
|
# Certain crates/versions that will be skipped when doing duplicate detection.
|
|
skip = [
|
|
{ name = "cfg-if", version = "0.1" }, # from winit v0.26.0
|
|
{ name = "core-foundation", version = "0.7" }, # from winit v0.26.0
|
|
{ name = "core-foundation-sys", version = "0.7" }, # from winit v0.26.0
|
|
{ name = "core-graphics", version = "0.19" }, # from winit v0.26.0
|
|
{ name = "ndk", version = "0.5" }, # from winit v0.26.1
|
|
{ name = "ndk-glue", version = "0.5" }, # from winit v0.26.1
|
|
{ name = "ndk-sys", version = "0.2" }, # from winit v0.26.1
|
|
{ name = "parking_lot", version = "0.11" }, # from rodio v0.15.0
|
|
{ name = "parking_lot_core", version = "0.8" }, # from rodio v0.15.0
|
|
{ name = "stdweb", version = "0.1" }, # from rodio v0.15.0
|
|
{ name = "nix", version = "0.23.1" }, # from alsa v0.6.0
|
|
]
|
|
|
|
[sources]
|
|
unknown-registry = "deny"
|
|
unknown-git = "deny"
|
|
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
|
|
allow-git = []
|