Skip to content

Commit ced9a59

Browse files
committed
Bump aes and ctr crate dependencies to v0.7
1 parent e4bf006 commit ced9a59

File tree

7 files changed

+23
-17
lines changed

7 files changed

+23
-17
lines changed

Cargo.lock

+14-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ members = [
1212
]
1313

1414
[patch.crates-io]
15-
aes = { git = "https://github.com/RustCrypto/block-ciphers.git" }
1615
chacha20 = { git = "https://github.com/RustCrypto/stream-ciphers.git" }
1716
cmac = { git = "https://github.com/RustCrypto/MACs.git" }
1817
ghash = { git = "https://github.com/RustCrypto/universal-hashes.git" }

aes-gcm-siv/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ categories = ["cryptography", "no-std"]
1717

1818
[dependencies]
1919
aead = { version = "0.4", default-features = false }
20-
aes = { version = "=0.7.0-pre", optional = true }
20+
aes = { version = "0.7", optional = true }
2121
cipher = "0.3"
22-
ctr = "=0.7.0-pre.4"
22+
ctr = "0.7"
2323
polyval = { version = "=0.5.0-pre", default-features = false }
2424
subtle = { version = "2", default-features = false }
2525
zeroize = { version = "1", default-features = false }

aes-gcm/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ categories = ["cryptography", "no-std"]
1717

1818
[dependencies]
1919
aead = { version = "0.4", default-features = false }
20-
aes = { version = "=0.7.0-pre", optional = true }
20+
aes = { version = "0.7", optional = true }
2121
cipher = "0.3"
22-
ctr = "=0.7.0-pre.4"
22+
ctr = "0.7"
2323
ghash = { version = "=0.4.0-pre", default-features = false }
2424
subtle = { version = "2", default-features = false }
2525
zeroize = { version = "1", optional = true, default-features = false }

aes-siv/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ categories = ["cryptography", "no-std"]
1717

1818
[dependencies]
1919
aead = "0.4"
20-
aes = "=0.7.0-pre"
20+
aes = "0.7"
2121
cipher = "0.3"
2222
cmac = "=0.6.0-pre"
2323
crypto-mac = "0.11"
24-
ctr = "=0.7.0-pre.4"
24+
ctr = "0.7"
2525
dbl = "0.3"
2626
pmac = "=0.6.0-pre"
2727
zeroize = { version = "1", default-features = false }

ccm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ subtle = { version = "2", default-features = false }
1919

2020
[dev-dependencies]
2121
aead = { version = "0.4", features = ["dev"], default-features = false }
22-
aes = { version = "=0.7.0-pre", features = ["force-soft"] } # Uses `force-soft` for MSRV 1.41
22+
aes = { version = "0.7", features = ["force-soft"] } # Uses `force-soft` for MSRV 1.41
2323
hex-literal = "0.2"
2424

2525
[features]

eax/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ categories = ["cryptography", "no-std"]
2222
aead = { version = "0.4", default-features = false }
2323
cipher = "0.3"
2424
cmac = "=0.6.0-pre"
25-
ctr = "=0.7.0-pre.4"
25+
ctr = "0.7"
2626
subtle = { version = "2", default-features = false }
2727

2828
[dev-dependencies]
2929
aead = { version = "0.4", features = ["dev"], default-features = false }
30-
aes = { version = "=0.7.0-pre", features = ["force-soft"] } # Uses `force-soft` for MSRV 1.41
30+
aes = { version = "0.7", features = ["force-soft"] } # Uses `force-soft` for MSRV 1.41
3131

3232
[features]
3333
default = ["alloc"]

0 commit comments

Comments
 (0)