From d785c87b9c07c55593d49c0b311cb8f7f923948f Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 9 Feb 2026 08:06:53 -0700 Subject: [PATCH] belt-dwp: remove use of `opaque-debug` --- Cargo.lock | 7 ------- belt-dwp/Cargo.toml | 1 - belt-dwp/src/ghash.rs | 2 -- 3 files changed, 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2612b585..5fcdfc12 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -136,7 +136,6 @@ dependencies = [ "belt-block", "belt-ctr", "hex-literal", - "opaque-debug", "subtle", "universal-hash", "zeroize", @@ -456,12 +455,6 @@ dependencies = [ "zeroize", ] -[[package]] -name = "opaque-debug" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" - [[package]] name = "pmac" version = "0.8.0-rc.4" diff --git a/belt-dwp/Cargo.toml b/belt-dwp/Cargo.toml index 4fb4a6fb..ecc8210e 100644 --- a/belt-dwp/Cargo.toml +++ b/belt-dwp/Cargo.toml @@ -15,7 +15,6 @@ rust-version = "1.85" aead = { version = "0.6.0-rc.10", default-features = false } belt-block = { version = "0.2.0-rc.3" } belt-ctr = { version = "0.2.0-rc.3" } -opaque-debug = { version = "0.3" } subtle = { version = "2", default-features = false } universal-hash = { version = "0.6.0-rc.10" } zeroize = { version = "1.8", default-features = false, optional = true } diff --git a/belt-dwp/src/ghash.rs b/belt-dwp/src/ghash.rs index c05dc04f..912f5991 100644 --- a/belt-dwp/src/ghash.rs +++ b/belt-dwp/src/ghash.rs @@ -71,5 +71,3 @@ impl Reset for GHash { self.s = Element::default(); } } - -opaque_debug::implement!(GHash);