From 42f336ad6bd3d652295967c4faed922dd8a24426 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82=D1=91=D0=BC=20=D0=9F=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=BE=D0=B2=20=5BArtyom=20Pavlov=5D?= Date: Fri, 7 Mar 2025 17:42:44 +0300 Subject: [PATCH] kbkdf: use pre.3 releases of `cmac` and `aes` --- Cargo.lock | 10 ++++++---- Cargo.toml | 6 ------ kbkdf/Cargo.toml | 4 ++-- 3 files changed, 8 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 921f1fe..6cdedc7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,8 +4,9 @@ version = 4 [[package]] name = "aes" -version = "0.9.0-pre.2" -source = "git+https://github.com/RustCrypto/block-ciphers.git#bb7623cf85b416c8c61d89dd11573e6e7f961720" +version = "0.9.0-pre.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38e4da00d9978020ddaa556c1747cfcafc3f375cfadb109acfe8b752cfc373bf" dependencies = [ "cfg-if", "cipher", @@ -78,8 +79,9 @@ dependencies = [ [[package]] name = "cmac" -version = "0.8.0-pre.2" -source = "git+https://github.com/RustCrypto/MACs.git#f2bcad467c06f16cc422e8b99edb6b90c622a76b" +version = "0.8.0-pre.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5965a19674a22507a478bb9fc6db32b1a397cd0d91c4a7f8facc1b2547e9de54" dependencies = [ "cipher", "dbl", diff --git a/Cargo.toml b/Cargo.toml index 8f01ddb..93fc126 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,9 +10,3 @@ members = [ [profile.dev] opt-level = 2 - -[patch.crates-io] -cmac = { git = "https://github.com/RustCrypto/MACs.git" } - -# https://github.com/RustCrypto/block-ciphers/pull/472 -aes = { git = "https://github.com/RustCrypto/block-ciphers.git" } diff --git a/kbkdf/Cargo.toml b/kbkdf/Cargo.toml index 101395f..ab040bf 100644 --- a/kbkdf/Cargo.toml +++ b/kbkdf/Cargo.toml @@ -22,8 +22,8 @@ hex = "0.4" hmac = { version = "0.13.0-pre.5", default-features = false } sha2 = { version = "0.11.0-pre.5", default-features = false } sha1 = { version = "0.11.0-pre.5", default-features = false } -cmac = "0.8.0-pre.2" -aes = "0.9.0-pre.2" +cmac = "0.8.0-pre.3" +aes = "0.9.0-pre.3" [package.metadata.docs.rs] all-features = true