Skip to content
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
8 changes: 4 additions & 4 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions chacha20/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
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 = { 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]
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 = { 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]
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 = { version = "0.5.0-rc.2", features = ["stream-wrapper"] }
cipher = { version = "0.5.0-rc.3", features = ["stream-wrapper"] }

[dev-dependencies]
hex-literal = "1"
Expand Down
4 changes: 2 additions & 2 deletions salsa20/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
Loading