39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
# https://embarkstudios.github.io/cargo-deny/
|
|
|
|
targets = [
|
|
{ triple = "aarch64-apple-darwin" },
|
|
{ triple = "aarch64-linux-android" },
|
|
{ triple = "x86_64-apple-darwin" },
|
|
{ triple = "x86_64-pc-windows-msvc" },
|
|
{ triple = "x86_64-unknown-linux-gnu" },
|
|
{ triple = "x86_64-unknown-linux-musl" },
|
|
]
|
|
|
|
|
|
[advisories]
|
|
vulnerability = "deny"
|
|
unmaintained = "warn"
|
|
yanked = "deny"
|
|
ignore = [
|
|
"RUSTSEC-2020-0071", # https://rustsec.org/advisories/RUSTSEC-2020-0071 - Potential segfault in the time crate.
|
|
"RUSTSEC-2020-0159", # https://rustsec.org/advisories/RUSTSEC-2020-0159 - Potential segfault in `localtime_r` invocations.
|
|
]
|
|
|
|
|
|
[bans]
|
|
multiple-versions = "deny"
|
|
wildcards = "allow" # at least until https://github.com/EmbarkStudios/cargo-deny/issues/241 is fixed
|
|
deny = []
|
|
skip = []
|
|
skip-tree = [
|
|
{ name = "flate2", version = "=1.0.24" }, # until a new version is published
|
|
{ name = "criterion" }, # dev-dependency
|
|
{ name = "quickcheck" }, # dev-dependency
|
|
]
|
|
|
|
|
|
[licenses]
|
|
unlicensed = "allow"
|
|
allow-osi-fsf-free = "either"
|
|
copyleft = "allow"
|