diff --git a/Cargo.lock b/Cargo.lock index 7041d788..aa21ea4c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -67,9 +67,9 @@ dependencies = [ [[package]] name = "cipher" -version = "0.5.0-rc.2" +version = "0.5.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "155e4a260750fa4f7754649f049748aacc31db238a358d85fd721002f230f92f" +checksum = "98d708bac5451350d56398433b19a7889022fa9187df1a769c0edbc3b2c03167" dependencies = [ "blobby", "block-buffer", @@ -89,9 +89,9 @@ dependencies = [ [[package]] name = "crypto-common" -version = "0.2.0-rc.5" +version = "0.2.0-rc.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "919bd05924682a5480aec713596b9e2aabed3a0a6022fab6847f85a99e5f190a" +checksum = "e6165b8029cdc3e765b74d3548f85999ee799d5124877ce45c2c85ca78e4d4aa" dependencies = [ "hybrid-array", ] diff --git a/chacha20/Cargo.toml b/chacha20/Cargo.toml index ed2c4e97..b72ac425 100644 --- a/chacha20/Cargo.toml +++ b/chacha20/Cargo.toml @@ -20,7 +20,7 @@ rand_core-compatible RNGs based on those ciphers. [dependencies] cfg-if = "1" -cipher = { version = "0.5.0-rc.2", optional = true, features = ["stream-wrapper"] } +cipher = { version = "0.5.0-rc.3", optional = true, features = ["stream-wrapper"] } rand_core = { version = "0.10.0-rc-3", optional = true, default-features = false } # `zeroize` is an explicit dependency because this crate may be used without the `cipher` crate @@ -30,7 +30,7 @@ zeroize = { version = "1.8.1", optional = true, default-features = false } cpufeatures = "0.2" [dev-dependencies] -cipher = { version = "0.5.0-rc.2", features = ["dev"] } +cipher = { version = "0.5.0-rc.3", features = ["dev"] } hex-literal = "1" proptest = "1" rand_chacha = "0.9" diff --git a/hc-256/Cargo.toml b/hc-256/Cargo.toml index b772aeba..8ca97423 100644 --- a/hc-256/Cargo.toml +++ b/hc-256/Cargo.toml @@ -13,10 +13,10 @@ categories = ["cryptography", "no-std"] description = "Pure Rust implementation of the HC-256 stream cipher" [dependencies] -cipher = { version = "0.5.0-rc.2", features = ["stream-wrapper"] } +cipher = { version = "0.5.0-rc.3", features = ["stream-wrapper"] } [dev-dependencies] -cipher = { version = "0.5.0-rc.2", features = ["dev"] } +cipher = { version = "0.5.0-rc.3", features = ["dev"] } hex-literal = "1" [features] diff --git a/rabbit/Cargo.toml b/rabbit/Cargo.toml index 3bda1331..b397cbe6 100644 --- a/rabbit/Cargo.toml +++ b/rabbit/Cargo.toml @@ -13,10 +13,10 @@ categories = ["cryptography", "no-std"] description = "Pure Rust implementation of the Rabbit stream cipher" [dependencies] -cipher = { version = "0.5.0-rc.2", features = ["stream-wrapper"] } +cipher = { version = "0.5.0-rc.3", features = ["stream-wrapper"] } [dev-dependencies] -cipher = { version = "0.5.0-rc.2", features = ["dev"] } +cipher = { version = "0.5.0-rc.3", features = ["dev"] } hex-literal = "1" [features] diff --git a/rc4/Cargo.toml b/rc4/Cargo.toml index db92245f..3501041c 100644 --- a/rc4/Cargo.toml +++ b/rc4/Cargo.toml @@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"] description = "Pure Rust implementation of the RC4 stream cipher" [dependencies] -cipher = { version = "0.5.0-rc.2", features = ["stream-wrapper"] } +cipher = { version = "0.5.0-rc.3", features = ["stream-wrapper"] } [dev-dependencies] hex-literal = "1" diff --git a/salsa20/Cargo.toml b/salsa20/Cargo.toml index 97d2455b..496b3dd7 100644 --- a/salsa20/Cargo.toml +++ b/salsa20/Cargo.toml @@ -14,10 +14,10 @@ description = "Pure Rust implementation of the Salsa20 stream cipher" [dependencies] cfg-if = "1" -cipher = { version = "0.5.0-rc.2", features = ["stream-wrapper"] } +cipher = { version = "0.5.0-rc.3", features = ["stream-wrapper"] } [dev-dependencies] -cipher = { version = "0.5.0-rc.2", features = ["dev"] } +cipher = { version = "0.5.0-rc.3", features = ["dev"] } hex-literal = "1" [features]