Skip to content

Commit 1493905

Browse files
authored
Bump cipher dependency to v0.5.0-rc.2 (#92)
1 parent 0f92e05 commit 1493905

File tree

11 files changed

+59
-63
lines changed

11 files changed

+59
-63
lines changed

Cargo.lock

Lines changed: 25 additions & 22 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 & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,3 @@ members = [
1414

1515
[profile.dev]
1616
opt-level = 2
17-
18-
[patch.crates-io]
19-
# https://github.com/RustCrypto/traits/pull/1998
20-
cipher = { git = "https://github.com/RustCrypto/traits" }
21-
# https://github.com/RustCrypto/utils/pull/1187
22-
# https://github.com/RustCrypto/utils/pull/1207
23-
blobby = { git = "https://github.com/RustCrypto/utils" }

belt-ctr/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ keywords = ["crypto", "block-mode", "stream-cipher", "ciphers", "belt"]
1313
categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
16-
cipher = { version = "0.5.0-rc.1", features = ["stream-wrapper"] }
17-
belt-block = "0.2.0-rc.1"
16+
cipher = { version = "0.5.0-rc.2", features = ["stream-wrapper"] }
17+
belt-block = "0.2.0-rc.2"
1818

1919
[dev-dependencies]
2020
hex-literal = "1"
21-
belt-block = "0.2.0-rc.1"
22-
cipher = { version = "0.5.0-rc.1", features = ["dev"] }
21+
belt-block = "0.2.0-rc.2"
22+
cipher = { version = "0.5.0-rc.2", features = ["dev"] }
2323

2424
[features]
2525
alloc = ["cipher/alloc"]

cbc/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ keywords = ["crypto", "block-mode", "ciphers"]
1313
categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
16-
cipher = "0.5.0-rc.1"
16+
cipher = "0.5.0-rc.2"
1717

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

2323
[features]

cfb-mode/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cfb-mode"
3-
version = "0.9.0-rc.1"
3+
version = "0.9.0-rc.2"
44
description = "Cipher Feedback (CFB) block cipher mode of operation"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"
@@ -13,12 +13,12 @@ keywords = ["crypto", "block-mode", "stream-cipher", "ciphers"]
1313
categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
16-
cipher = "0.5.0-rc.1"
16+
cipher = "0.5.0-rc.2"
1717

1818
[dev-dependencies]
19-
aes = "0.9.0-rc.1"
20-
belt-block = "0.2.0-rc.1"
21-
cipher = { version = "0.5.0-rc.1", features = ["dev"] }
19+
aes = "0.9.0-rc.2"
20+
belt-block = "0.2.0-rc.2"
21+
cipher = { version = "0.5.0-rc.2", features = ["dev"] }
2222
hex-literal = "1"
2323

2424
[features]

cfb8/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cfb8"
3-
version = "0.9.0-rc.1"
3+
version = "0.9.0-rc.2"
44
description = "Cipher Feedback with eight bit feedback (CFB-8) block cipher mode of operation"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"
@@ -13,11 +13,11 @@ keywords = ["crypto", "block-mode", "stream-cipher", "ciphers"]
1313
categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
16-
cipher = "0.5.0-rc.1"
16+
cipher = "0.5.0-rc.2"
1717

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

2323
[features]

ctr/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ keywords = ["crypto", "block-mode", "stream-cipher", "ciphers"]
1313
categories = ["cryptography", "no-std"]
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-
aes = "0.9.0-rc.1"
20-
magma = "0.10.0-rc.1"
21-
kuznyechik = "0.9.0-rc.1"
22-
cipher = { version = "0.5.0-rc.1", features = ["dev"] }
19+
aes = "0.9.0-rc.2"
20+
magma = "0.10.0-rc.2"
21+
kuznyechik = "0.9.0-rc.2"
22+
cipher = { version = "0.5.0-rc.2", features = ["dev"] }
2323
hex-literal = "1"
2424

2525
[features]

cts/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ keywords = ["crypto", "block-mode", "ciphers"]
1313
categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
16-
cipher = "0.5.0-rc.1"
16+
cipher = "0.5.0-rc.2"
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"
21-
aes = "0.9.0-rc.1"
22-
belt-block = "0.2.0-rc.1"
21+
aes = "0.9.0-rc.2"
22+
belt-block = "0.2.0-rc.2"
2323

2424
[package.metadata.docs.rs]
2525
all-features = true

ige/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ keywords = ["crypto", "block-mode", "ciphers"]
1313
categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
16-
cipher = "0.5.0-rc.1"
16+
cipher = "0.5.0-rc.2"
1717

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

2323
[features]

ofb/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ keywords = ["crypto", "block-mode", "stream-cipher", "ciphers"]
1313
categories = ["cryptography", "no-std"]
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-
aes = "0.9.0-rc.1"
20-
cipher = { version = "0.5.0-rc.1", features = ["dev"] }
19+
aes = "0.9.0-rc.2"
20+
cipher = { version = "0.5.0-rc.2", features = ["dev"] }
2121
hex-literal = "1"
2222

2323
[features]

0 commit comments

Comments
 (0)