diff --git a/Cargo.lock b/Cargo.lock index fdd07cc5..49dd3496 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -11,7 +11,7 @@ dependencies = [ "arrayvec", "blobby 0.4.0-pre.0", "bytes", - "crypto-common", + "crypto-common 0.2.0-rc.2", "heapless", "inout", ] @@ -220,7 +220,7 @@ version = "0.5.0-pre.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "276974d2acb7cf592603150941fc1ff6442acdeb1dc653ac2825928f4703c131" dependencies = [ - "crypto-common", + "crypto-common 0.2.0-rc.2", "inout", "zeroize", ] @@ -254,6 +254,15 @@ dependencies = [ "rand_core", ] +[[package]] +name = "crypto-common" +version = "0.2.0-rc.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a23fa214dea9efd4dacee5a5614646b30216ae0f05d4bb51bafb50e9da1c5be" +dependencies = [ + "hybrid-array", +] + [[package]] name = "ctr" version = "0.10.0-pre.2" @@ -289,7 +298,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c478574b20020306f98d61c8ca3322d762e1ff08117422ac6106438605ea516" dependencies = [ "block-buffer", - "crypto-common", + "crypto-common 0.2.0-rc.2", "subtle", ] @@ -510,11 +519,11 @@ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" [[package]] name = "universal-hash" -version = "0.6.0-rc.0" +version = "0.6.0-rc.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3517d72c5ca6d60f9f2e85d2c772e2652830062a685105a528d19dd823cf87d5" +checksum = "17866ce72039aaa929b785c51d08d0395e02cb5eaffd3efdf634b9b1f80b8157" dependencies = [ - "crypto-common", + "crypto-common 0.2.0-rc.3", "subtle", ] diff --git a/belt-dwp/Cargo.toml b/belt-dwp/Cargo.toml index d0bb180d..9689a5f3 100644 --- a/belt-dwp/Cargo.toml +++ b/belt-dwp/Cargo.toml @@ -14,7 +14,7 @@ rust-version = "1.85" [dependencies] aead = { version = "0.6.0-rc.0", default-features = false } zeroize = { version = "1.7", default-features = false, optional = true } -universal-hash = { version = "0.6.0-rc.0" } +universal-hash = { version = "0.6.0-rc.1" } opaque-debug = { version = "0.3" } subtle = { version = "2", default-features = false }