From 1b6a04ca5504955c571d1c97504fb45ea0befee4 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Mon, 8 Jan 2024 01:21:28 +0400 Subject: Initial vendor packages Signed-off-by: Valentin Popov --- vendor/image/deny.toml | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 vendor/image/deny.toml (limited to 'vendor/image/deny.toml') diff --git a/vendor/image/deny.toml b/vendor/image/deny.toml new file mode 100644 index 0000000..13cbe87 --- /dev/null +++ b/vendor/image/deny.toml @@ -0,0 +1,38 @@ +# 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 = [] + + +[bans] +multiple-versions = "deny" +wildcards = "allow" # at least until https://github.com/EmbarkStudios/cargo-deny/issues/241 is fixed +deny = [] +skip = [ + { name = "num-derive" } # ravif transatively depends on 0.3 and 0.4. +] +skip-tree = [ + { name = "criterion" }, # dev-dependency + { name = "quickcheck" }, # dev-dependency + { name = "dav1d" }, # TODO: needs upgrade + { name = "clap" }, +] + + +[licenses] +unlicensed = "allow" +allow-osi-fsf-free = "either" +copyleft = "allow" -- cgit v1.2.3