From 5c24146aaf3bd7b1561f90cdef3cf93625900b96 Mon Sep 17 00:00:00 2001 From: Brian Heylin <3947+bheylin@users.noreply.github.com> Date: Sat, 26 Oct 2024 09:52:29 +0200 Subject: [PATCH] Forbid multiple dep versions --- deny.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/deny.toml b/deny.toml index b9375db..1ae9e3e 100644 --- a/deny.toml +++ b/deny.toml @@ -1,4 +1,6 @@ # configuration for https://github.com/EmbarkStudios/cargo-deny +[graph] +all-features = true [licenses] confidence-threshold = 0.8 @@ -12,9 +14,10 @@ allow = [ yanked = "deny" [bans] -multiple-versions = "allow" +multiple-versions = "deny" +wildcards = 'deny' [sources] unknown-registry = "deny" -unknown-git = "warn" +unknown-git = "deny" allow-registry = ["https://github.com/rust-lang/crates.io-index"]