From cb9e6f3fca612b54c90e676e3730f67a537a3dd9 Mon Sep 17 00:00:00 2001 From: Willem Wyndham Date: Mon, 11 Nov 2024 14:24:41 -0500 Subject: [PATCH] fix: allow duplicate crates when updating slipped10 slipped10 has duplicate versions of sha2, and until that is fixed we can ignore it and its related dependents' multiple versions. --- deny.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/deny.toml b/deny.toml index 7588e71f16..969a3f7626 100644 --- a/deny.toml +++ b/deny.toml @@ -252,6 +252,11 @@ deny = [ # Certain crates/versions that will be skipped when doing duplicate detection. skip = [ + + { crate = "sha2", reason = "temporary duplicate until upstream updates" }, + { crate = "digest", reason = "temporary duplicate until upstream updates" }, + { crate = "block-buffer", reason = "temporary duplicate until upstream updates" } + # { name = "hashbrown", version = "=0.13.2" }, # { name = "syn", version = "=1.0.109" }, ]