Skip to content

Commit 962726f

Browse files
authored
cipher v0.5.0-rc.0 (#422)
Also cuts `rc.0` releases of `chacha20` and `salsa20`
1 parent e3cdfa1 commit 962726f

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chacha20/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chacha20"
3-
version = "0.10.0-pre.3"
3+
version = "0.10.0-rc.0"
44
authors = ["RustCrypto Developers"]
55
edition = "2024"
66
rust-version = "1.85"
@@ -20,7 +20,7 @@ rand_core-compatible RNGs based on those ciphers.
2020

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

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

3333
[dev-dependencies]
34-
cipher = { version = "=0.5.0-pre.8", features = ["dev"] }
34+
cipher = { version = "0.5.0-rc.0", features = ["dev"] }
3535
hex-literal = "1"
3636
rand_chacha = "0.9"
3737
serde_json = "1.0" # Only to test serde1

hc-256/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ categories = ["cryptography", "no-std"]
1313
description = "Pure Rust implementation of the HC-256 stream cipher"
1414

1515
[dependencies]
16-
cipher = "=0.5.0-pre.8"
16+
cipher = "0.5.0-rc.0"
1717

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

2222
[features]

rabbit/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ categories = ["cryptography", "no-std"]
1313
description = "Pure Rust implementation of the Rabbit stream cipher"
1414

1515
[dependencies]
16-
cipher = "=0.5.0-pre.8"
16+
cipher = "0.5.0-rc.0"
1717

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

2222
[features]

rc4/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]
1313
description = "Pure Rust implementation of the RC4 stream cipher"
1414

1515
[dependencies]
16-
cipher = "=0.5.0-pre.8"
16+
cipher = "0.5.0-rc.0"
1717

1818
[dev-dependencies]
1919
hex-literal = "1"

salsa20/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "salsa20"
3-
version = "0.11.0-pre.2"
3+
version = "0.11.0-rc.0"
44
authors = ["RustCrypto Developers"]
55
edition = "2024"
66
rust-version = "1.85"
@@ -14,10 +14,10 @@ description = "Pure Rust implementation of the Salsa20 stream cipher"
1414

1515
[dependencies]
1616
cfg-if = "1"
17-
cipher = "=0.5.0-pre.8"
17+
cipher = "0.5.0-rc.0"
1818

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

2323
[features]

0 commit comments

Comments
 (0)