Skip to content

cipher v0.5.0-rc.0 #422

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions chacha20/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chacha20"
version = "0.10.0-pre.3"
version = "0.10.0-rc.0"
authors = ["RustCrypto Developers"]
edition = "2024"
rust-version = "1.85"
Expand All @@ -20,7 +20,7 @@ rand_core-compatible RNGs based on those ciphers.

[dependencies]
cfg-if = "1"
cipher = { version = "=0.5.0-pre.8", optional = true }
cipher = { version = "0.5.0-rc.0", optional = true }
rand_core = { version = "0.9", optional = true, default-features = false }
serde = { version = "1.0", features = ["derive"], optional = true }

Expand All @@ -31,7 +31,7 @@ zeroize = { version = "1.8.1", optional = true, default-features = false }
cpufeatures = "0.2"

[dev-dependencies]
cipher = { version = "=0.5.0-pre.8", features = ["dev"] }
cipher = { version = "0.5.0-rc.0", features = ["dev"] }
hex-literal = "1"
rand_chacha = "0.9"
serde_json = "1.0" # Only to test serde1
Expand Down
4 changes: 2 additions & 2 deletions hc-256/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ categories = ["cryptography", "no-std"]
description = "Pure Rust implementation of the HC-256 stream cipher"

[dependencies]
cipher = "=0.5.0-pre.8"
cipher = "0.5.0-rc.0"

[dev-dependencies]
cipher = { version = "=0.5.0-pre.8", features = ["dev"] }
cipher = { version = "0.5.0-rc.0", features = ["dev"] }
hex-literal = "1"

[features]
Expand Down
4 changes: 2 additions & 2 deletions rabbit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ categories = ["cryptography", "no-std"]
description = "Pure Rust implementation of the Rabbit stream cipher"

[dependencies]
cipher = "=0.5.0-pre.8"
cipher = "0.5.0-rc.0"

[dev-dependencies]
cipher = { version = "=0.5.0-pre.8", features = ["dev"] }
cipher = { version = "0.5.0-rc.0", features = ["dev"] }
hex-literal = "1"

[features]
Expand Down
2 changes: 1 addition & 1 deletion rc4/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]
description = "Pure Rust implementation of the RC4 stream cipher"

[dependencies]
cipher = "=0.5.0-pre.8"
cipher = "0.5.0-rc.0"

[dev-dependencies]
hex-literal = "1"
Expand Down
6 changes: 3 additions & 3 deletions salsa20/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "salsa20"
version = "0.11.0-pre.2"
version = "0.11.0-rc.0"
authors = ["RustCrypto Developers"]
edition = "2024"
rust-version = "1.85"
Expand All @@ -14,10 +14,10 @@ description = "Pure Rust implementation of the Salsa20 stream cipher"

[dependencies]
cfg-if = "1"
cipher = "=0.5.0-pre.8"
cipher = "0.5.0-rc.0"

[dev-dependencies]
cipher = { version = "=0.5.0-pre.8", features = ["dev"] }
cipher = { version = "0.5.0-rc.0", features = ["dev"] }
hex-literal = "1"

[features]
Expand Down
Loading