diff --git a/Cargo.lock b/Cargo.lock index d7017df1..b686cb1b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,7 +19,7 @@ dependencies = [ "arrayvec", "blobby", "bytes", - "crypto-common 0.2.0-rc.0", + "crypto-common 0.2.0-rc.1", "heapless", ] @@ -130,7 +130,7 @@ version = "0.11.0-rc.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "17092d478f4fadfb35a7e082f62e49f0907fdf048801d9d706277e34f9df8a78" dependencies = [ - "crypto-common 0.2.0-rc.0", + "crypto-common 0.2.0-rc.1", "zeroize", ] @@ -314,17 +314,6 @@ dependencies = [ "typenum", ] -[[package]] -name = "crypto-common" -version = "0.2.0-rc.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c070b79a496dccd931229780ad5bbedd535ceff6c3565605a8e440e18e1aa2b" -dependencies = [ - "getrandom", - "hybrid-array", - "rand_core", -] - [[package]] name = "crypto-common" version = "0.2.0-rc.1" @@ -435,7 +424,7 @@ dependencies = [ "blobby", "block-buffer 0.11.0-rc.0", "const-oid 0.10.0-rc.0", - "crypto-common 0.2.0-rc.0", + "crypto-common 0.2.0-rc.1", "subtle", "zeroize", ] @@ -717,9 +706,9 @@ dependencies = [ [[package]] name = "hybrid-array" -version = "0.2.0-rc.9" +version = "0.2.0-rc.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d306b679262030ad8813a82d4915fc04efff97776e4db7f8eb5137039d56400" +checksum = "bae36f8710514b3e7aab028021733330de6e455e0352e19c6dd4513eecb7aa9a" dependencies = [ "typenum", "zeroize", @@ -1306,7 +1295,7 @@ dependencies = [ name = "universal-hash" version = "0.6.0-rc.0" dependencies = [ - "crypto-common 0.2.0-rc.0", + "crypto-common 0.2.0-rc.1", "subtle", ] diff --git a/crypto-common/Cargo.toml b/crypto-common/Cargo.toml index a7ae02d8..8eddb6f9 100644 --- a/crypto-common/Cargo.toml +++ b/crypto-common/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["crypto", "traits"] categories = ["cryptography", "no-std"] [dependencies] -hybrid-array = "0.2.0-rc.8" +hybrid-array = "0.2.0-rc.10" # optional dependencies rand_core = { version = "0.6.4", optional = true } diff --git a/elliptic-curve/Cargo.toml b/elliptic-curve/Cargo.toml index 32c32771..a5c2091f 100644 --- a/elliptic-curve/Cargo.toml +++ b/elliptic-curve/Cargo.toml @@ -19,7 +19,7 @@ rust-version = "1.81" [dependencies] base16ct = "0.2" crypto-bigint = { version = "0.6.0-rc.5", default-features = false, features = ["rand_core", "hybrid-array", "zeroize"] } -hybrid-array = { version = "0.2.0-rc.8", default-features = false, features = ["zeroize"] } +hybrid-array = { version = "0.2.0-rc.10", default-features = false, features = ["zeroize"] } rand_core = { version = "0.6.4", default-features = false } subtle = { version = "2.6", default-features = false } zeroize = { version = "1.7", default-features = false }