From a850f599f3e5ed4bd38d1e252578fc113cb8cf2f Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Tue, 2 Sep 2025 20:14:24 -0600 Subject: [PATCH] Bump `dbl` to v0.5 --- Cargo.lock | 5 +++-- Cargo.toml | 4 ---- cmac/Cargo.toml | 2 +- pmac/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9432b7c..756e053 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -111,8 +111,9 @@ dependencies = [ [[package]] name = "dbl" -version = "0.5.0-pre" -source = "git+https://github.com/RustCrypto/utils#adfccfea2686ef191b607f653cc3587753b6ec66" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0d7a944e61df464668c5f51f56cc667396a8821434273112948ea0b66e405d7" dependencies = [ "hybrid-array", ] diff --git a/Cargo.toml b/Cargo.toml index 45f5deb..b8c3abb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,3 @@ members = [ [profile.dev] opt-level = 2 - -[patch.crates-io] -# https://github.com/RustCrypto/utils/pull/1208 -dbl = { git = "https://github.com/RustCrypto/utils" } diff --git a/cmac/Cargo.toml b/cmac/Cargo.toml index 46f29a7..17d9e06 100644 --- a/cmac/Cargo.toml +++ b/cmac/Cargo.toml @@ -16,7 +16,7 @@ exclude = ["tests/cavp_large.rs", "tests/data/cavp_aes128_large.blb"] [dependencies] cipher = "0.5.0-rc.1" digest = { version = "0.11.0-rc.1", features = ["mac"] } -dbl = "0.5.0-pre" +dbl = "0.5" [dev-dependencies] digest = { version = "0.11.0-rc.1", features = ["dev"] } diff --git a/pmac/Cargo.toml b/pmac/Cargo.toml index d58de4c..362d24f 100644 --- a/pmac/Cargo.toml +++ b/pmac/Cargo.toml @@ -15,7 +15,7 @@ categories = ["cryptography", "no-std"] [dependencies] cipher = "0.5.0-rc.1" digest = { version = "0.11.0-rc.1", features = ["mac"] } -dbl = "0.5.0-pre" +dbl = "0.5" [dev-dependencies] aes = "0.9.0-rc.1"