Skip to content

Commit 893b4c2

Browse files
authored
Bump cipher to v0.5.0-rc.1 (#451)
1 parent 1b7c822 commit 893b4c2

File tree

7 files changed

+21
-25
lines changed

7 files changed

+21
-25
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,3 @@ opt-level = 2
1414
[patch.crates-io]
1515
# https://github.com/RustCrypto/utils/pull/1187
1616
blobby = { git = "https://github.com/RustCrypto/utils" }
17-
# https://github.com/RustCrypto/traits/pull/1959
18-
# https://github.com/RustCrypto/traits/pull/1976
19-
cipher = { git = "https://github.com/RustCrypto/traits" }
20-
# https://github.com/RustCrypto/utils/pull/1201
21-
# https://github.com/RustCrypto/traits/pull/1976
22-
block-buffer = { git = "https://github.com/RustCrypto/utils" }
23-
# https://github.com/RustCrypto/traits/pull/1976
24-
inout = { git = "https://github.com/RustCrypto/utils" }

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.0", optional = true, features = ["stream-wrapper"] }
23+
cipher = { version = "0.5.0-rc.1", optional = true, features = ["stream-wrapper"] }
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-rc.0", features = ["dev"] }
34+
cipher = { version = "0.5.0-rc.1", features = ["dev"] }
3535
hex-literal = "1"
3636
proptest = "1"
3737
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.0", features = ["stream-wrapper"] }
16+
cipher = { version = "0.5.0-rc.1", features = ["stream-wrapper"] }
1717

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

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

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

2323
[features]

0 commit comments

Comments
 (0)