Skip to content

Commit 8d0f8db

Browse files
authored
Bump cipher dependency to v0.5.0-rc.2 (#481)
1 parent 50d3f0d commit 8d0f8db

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-rc.1", optional = true, features = ["stream-wrapper"] }
23+
cipher = { version = "0.5.0-rc.2", optional = true, features = ["stream-wrapper"] }
2424
rand_core = { version = "0.10.0-rc-2", optional = true, default-features = false }
2525

2626
# `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 }
3030
cpufeatures = "0.2"
3131

3232
[dev-dependencies]
33-
cipher = { version = "0.5.0-rc.1", features = ["dev"] }
33+
cipher = { version = "0.5.0-rc.2", features = ["dev"] }
3434
hex-literal = "1"
3535
proptest = "1"
3636
rand_chacha = "0.9"

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 = { version = "0.5.0-rc.1", features = ["stream-wrapper"] }
16+
cipher = { version = "0.5.0-rc.2", features = ["stream-wrapper"] }
1717

1818
[dev-dependencies]
19-
cipher = { version = "0.5.0-rc.1", features = ["dev"] }
19+
cipher = { version = "0.5.0-rc.2", 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 = { version = "0.5.0-rc.1", features = ["stream-wrapper"] }
16+
cipher = { version = "0.5.0-rc.2", features = ["stream-wrapper"] }
1717

1818
[dev-dependencies]
19-
cipher = { version = "0.5.0-rc.1", features = ["dev"] }
19+
cipher = { version = "0.5.0-rc.2", 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 = { version = "0.5.0-rc.1", features = ["stream-wrapper"] }
16+
cipher = { version = "0.5.0-rc.2", features = ["stream-wrapper"] }
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 = { version = "0.5.0-rc.1", features = ["stream-wrapper"] }
17+
cipher = { version = "0.5.0-rc.2", features = ["stream-wrapper"] }
1818

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

2323
[features]

0 commit comments

Comments
 (0)