diff --git a/Cargo.lock b/Cargo.lock index ded56d1..347ed00 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,9 +19,9 @@ dependencies = [ [[package]] name = "crypto-common" -version = "0.2.0-rc.4" +version = "0.2.0-rc.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a8235645834fbc6832939736ce2f2d08192652269e11010a6240f61b908a1c6" +checksum = "919bd05924682a5480aec713596b9e2aabed3a0a6022fab6847f85a99e5f190a" dependencies = [ "hybrid-array", ] @@ -91,9 +91,9 @@ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" [[package]] name = "universal-hash" -version = "0.6.0-rc.2" +version = "0.6.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a55be643b40a21558f44806b53ee9319595bc7ca6896372e4e08e5d7d83c9cd6" +checksum = "9ad6682ddb0189a4d3c2a5c54b8920ab6231ae911db53fc61a0709507bf1713b" dependencies = [ "crypto-common", "subtle", diff --git a/poly1305/Cargo.toml b/poly1305/Cargo.toml index 28ca6f9..c54c5e4 100644 --- a/poly1305/Cargo.toml +++ b/poly1305/Cargo.toml @@ -13,7 +13,7 @@ rust-version = "1.85" edition = "2024" [dependencies] -universal-hash = { version = "0.6.0-rc.2", default-features = false } +universal-hash = { version = "0.6.0-rc.3", default-features = false } zeroize = { version = "1", optional = true, default-features = false } [target.'cfg(any(target_arch = "x86_64", target_arch = "x86"))'.dependencies] diff --git a/polyval/Cargo.toml b/polyval/Cargo.toml index 3f3824c..35d75ce 100644 --- a/polyval/Cargo.toml +++ b/polyval/Cargo.toml @@ -17,7 +17,7 @@ edition = "2024" [dependencies] cfg-if = "1" -universal-hash = { version = "0.6.0-rc.2", default-features = false } +universal-hash = { version = "0.6.0-rc.3", default-features = false } zeroize = { version = "1", optional = true, default-features = false } [target.'cfg(any(target_arch = "aarch64", target_arch = "x86_64", target_arch = "x86"))'.dependencies]