Skip to content

Commit 1ab98fd

Browse files
committed
bump cipher dependency to v0.5.0-rc.0
1 parent 18dfe15 commit 1ab98fd

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

Cargo.lock

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

chacha20/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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)