Skip to content

Commit 7c7c3d7

Browse files
authored
Bump cipher dependency to v0.5.0-rc.0 (#197)
Also cuts `rc.0` prereleases of `cbc-mac`, `cmac`, and `pmac`
1 parent 6724416 commit 7c7c3d7

6 files changed

Lines changed: 32 additions & 32 deletions

File tree

Cargo.lock

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

belt-mac/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
1616
belt-block = "0.2.0-pre.3"
17-
cipher = "=0.5.0-pre.8"
17+
cipher = "0.5.0-rc.0"
1818
digest = { version = "0.11.0-rc.0", features = ["mac"] }
1919

2020
[dev-dependencies]

cbc-mac/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cbc-mac"
3-
version = "0.2.0-pre.2"
3+
version = "0.2.0-rc.0"
44
description = "Implementation of Cipher Block Chaining Message Authentication Code (CBC-MAC)"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"
@@ -12,15 +12,15 @@ repository = "https://github.com/RustCrypto/MACs"
1212
keywords = ["crypto", "mac", "daa"]
1313

1414
[dependencies]
15-
cipher = "=0.5.0-pre.8"
15+
cipher = "0.5.0-rc.0"
1616
digest = { version = "0.11.0-rc.0", features = ["mac"] }
1717

1818
[dev-dependencies]
1919
digest = { version = "0.11.0-rc.0", features = ["dev"] }
2020
hex-literal = "1"
2121

22-
aes = "0.9.0-pre.3"
23-
des = "0.9.0-pre.3"
22+
aes = "0.9.0-rc.0"
23+
des = "0.9.0-rc.0"
2424

2525
[features]
2626
zeroize = ["cipher/zeroize", "digest/zeroize"]

cmac/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cmac"
3-
version = "0.8.0-pre.4"
3+
version = "0.8.0-rc.0"
44
description = "Generic implementation of Cipher-based Message Authentication Code"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"
@@ -14,18 +14,18 @@ categories = ["cryptography", "no-std"]
1414
exclude = ["tests/cavp_large.rs", "tests/data/cavp_aes128_large.blb"]
1515

1616
[dependencies]
17-
cipher = "=0.5.0-pre.8"
17+
cipher = "0.5.0-rc.0"
1818
digest = { version = "0.11.0-rc.0", features = ["mac"] }
1919
dbl = "0.4.0-rc.0"
2020

2121
[dev-dependencies]
2222
digest = { version = "0.11.0-rc.0", features = ["dev"] }
2323
hex-literal = "1"
2424

25-
aes = "0.9.0-pre.3"
26-
des = "0.9.0-pre.3"
27-
kuznyechik = "0.9.0-pre.3"
28-
magma = "0.10.0-pre.3"
25+
aes = "0.9.0-rc.0"
26+
des = "0.9.0-rc.0"
27+
kuznyechik = "0.9.0-rc.0"
28+
magma = "0.10.0-rc.0"
2929

3030
[features]
3131
zeroize = ["cipher/zeroize", "digest/zeroize"]

pmac/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pmac"
3-
version = "0.8.0-pre.2"
3+
version = "0.8.0-rc.0"
44
description = "Generic implementation of Parallelizable Message Authentication Code"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"
@@ -13,12 +13,12 @@ keywords = ["crypto", "mac", "pmac"]
1313
categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
16-
cipher = "=0.5.0-pre.8"
16+
cipher = "0.5.0-rc.0"
1717
digest = { version = "0.11.0-rc.0", features = ["mac"] }
1818
dbl = "0.4.0-rc.0"
1919

2020
[dev-dependencies]
21-
aes = "0.9.0-pre.3"
21+
aes = "0.9.0-rc.0"
2222
digest = { version = "0.11.0-rc.0", features = ["dev"] }
2323

2424
[features]

retail-mac/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ repository = "https://github.com/RustCrypto/MACs"
1212
keywords = ["crypto", "mac"]
1313

1414
[dependencies]
15-
cipher = "=0.5.0-pre.8"
15+
cipher = "0.5.0-rc.0"
1616
digest = { version = "0.11.0-rc.0", features = ["mac"] }
1717

1818
[dev-dependencies]
1919
digest = { version = "0.11.0-rc.0", features = ["dev"] }
2020
hex-literal = "1"
2121

22-
aes = "0.9.0-pre.2"
23-
des = "0.9.0-pre.2"
22+
aes = "0.9.0-rc.0"
23+
des = "0.9.0-rc.0"
2424

2525
[features]
2626
zeroize = ["cipher/zeroize", "digest/zeroize"]

0 commit comments

Comments
 (0)