Skip to content

Commit 1654543

Browse files
authored
Use pre.3 releases of block cipher crates (#182)
1 parent f2bcad4 commit 1654543

File tree

6 files changed

+32
-28
lines changed

6 files changed

+32
-28
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
[workspace]
2-
resolver = "2"
3-
members = ["belt-mac", "cbc-mac", "cmac", "hmac", "pmac", "retail-mac"]
2+
resolver = "3"
3+
members = [
4+
"belt-mac",
5+
"cbc-mac",
6+
"cmac",
7+
"hmac",
8+
"pmac",
9+
"retail-mac",
10+
]
411

512
[profile.dev]
613
opt-level = 2
7-
8-
[patch.crates-io]
9-
# https://github.com/RustCrypto/block-ciphers/pull/472
10-
aes = { git = "https://github.com/RustCrypto/block-ciphers.git" }
11-
des = { git = "https://github.com/RustCrypto/block-ciphers.git" }
12-
belt-block = { git = "https://github.com/RustCrypto/block-ciphers.git" }
13-
kuznyechik = { git = "https://github.com/RustCrypto/block-ciphers.git" }
14-
magma = { git = "https://github.com/RustCrypto/block-ciphers.git" }

belt-mac/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ keywords = ["crypto", "mac", "belt-mac"]
1313
categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
16-
belt-block = "0.2.0-pre.2"
16+
belt-block = "0.2.0-pre.3"
1717
cipher = "=0.5.0-pre.8"
1818
digest = { version = "=0.11.0-pre.10", features = ["mac"] }
1919

cbc-mac/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ digest = { version = "=0.11.0-pre.10", features = ["mac"] }
1919
digest = { version = "=0.11.0-pre.10", 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-pre.3"
23+
des = "0.9.0-pre.3"
2424

2525
[features]
2626
std = ["digest/std"]

cmac/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ dbl = "0.4.0-rc.0"
2222
digest = { version = "=0.11.0-pre.10", features = ["dev"] }
2323
hex-literal = "1"
2424

25-
aes = "0.9.0-pre.2"
26-
des = "0.9.0-pre.2"
27-
kuznyechik = "0.9.0-pre.2"
28-
magma = "0.10.0-pre.2"
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"
2929

3030
[features]
3131
std = ["digest/std"]

pmac/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ digest = { version = "=0.11.0-pre.10", features = ["mac"] }
1818
dbl = "0.4.0-rc.0"
1919

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

2424
[features]

0 commit comments

Comments
 (0)