Skip to content

Commit b8395fd

Browse files
committed
chore(deps): bump aead to 0.6.0-rc.1
1 parent 976052d commit b8395fd

File tree

15 files changed

+97
-127
lines changed

15 files changed

+97
-127
lines changed

Cargo.lock

Lines changed: 42 additions & 47 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 & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,3 @@ resolver = "2"
1818
[patch.crates-io]
1919
aead-stream = { path = "./aead-stream" }
2020
aes-gcm = { path = "./aes-gcm" }
21-
22-
aead = { git = "https://github.com/RustCrypto/traits.git" }
23-
crypto-common = { git = "https://github.com/RustCrypto/traits.git" }
24-
25-
chacha20 = { git = "https://github.com/RustCrypto/stream-ciphers.git" }
26-
27-
ctr = { git = "https://github.com/RustCrypto/block-modes.git" }
28-
29-
ghash = { git = "https://github.com/RustCrypto/universal-hashes.git" }
30-
31-
pmac = { git = "https://github.com/RustCrypto/MACs.git" }
32-
33-
belt-ctr = { git = "https://github.com/RustCrypto/block-modes.git" }
34-
35-
# https://github.com/RustCrypto/utils/pull/1170
36-
inout = { git = "https://github.com/RustCrypto/utils.git" }

aead-stream/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
rust-version = "1.85"
1414

1515
[dependencies]
16-
aead = { version = "=0.6.0-rc.0", default-features = false }
16+
aead = { version = "=0.6.0-rc.1", default-features = false }
1717

1818
[features]
1919
alloc = ["aead/alloc"]

aes-gcm-siv/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ categories = ["cryptography", "no-std"]
1717
rust-version = "1.85"
1818

1919
[dependencies]
20-
aead = { version = "0.6.0-rc.0", default-features = false }
21-
aes = { version = "=0.9.0-pre.3", optional = true }
22-
cipher = "=0.5.0-pre.8"
23-
ctr = "0.10.0-pre.2"
20+
aead = { version = "0.6.0-rc.1", default-features = false }
21+
aes = { version = "0.9.0-rc.0", optional = true }
22+
cipher = "0.5.0-rc.0"
23+
ctr = "0.10.0-rc.0"
2424
polyval = { version = "0.7.0-rc.0", default-features = false }
2525
subtle = { version = "2", default-features = false }
2626
zeroize = { version = "1", optional = true, default-features = false }
2727

2828
[dev-dependencies]
29-
aead = { version = "0.6.0-rc.0", features = ["dev"], default-features = false }
29+
aead = { version = "0.6.0-rc.1", features = ["dev"], default-features = false }
3030

3131
[features]
3232
default = ["aes", "alloc", "os_rng"]

aes-gcm/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ categories = ["cryptography", "no-std"]
1717
rust-version = "1.85"
1818

1919
[dependencies]
20-
aead = { version = "0.6.0-rc.0", default-features = false }
21-
aes = { version = "=0.9.0-pre.3", optional = true }
22-
cipher = "=0.5.0-pre.8"
23-
ctr = "0.10.0-pre.2"
24-
ghash = { version = "0.6.0-rc.0", default-features = false }
20+
aead = { version = "0.6.0-rc.1", default-features = false }
21+
aes = { version = "0.9.0-rc.0", optional = true }
22+
cipher = "0.5.0-rc.0"
23+
ctr = "0.10.0-rc.0"
24+
ghash = { version = "0.6.0-rc.1", default-features = false }
2525
subtle = { version = "2", default-features = false }
2626
zeroize = { version = "1", optional = true, default-features = false }
2727

2828
[dev-dependencies]
29-
aead = { version = "0.6.0-rc.0", features = ["alloc", "dev"], default-features = false }
29+
aead = { version = "0.6.0-rc.1", features = ["alloc", "dev"], default-features = false }
3030
hex-literal = "0.4"
3131

3232
[features]

aes-siv/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,22 @@ categories = ["cryptography", "no-std"]
1717
rust-version = "1.85"
1818

1919
[dependencies]
20-
aead = "0.6.0-rc.0"
21-
aes = "=0.9.0-pre.3"
22-
cipher = "=0.5.0-pre.8"
23-
cmac = "0.8.0-pre.2"
24-
ctr = "0.10.0-pre.2"
20+
aead = "0.6.0-rc.1"
21+
aes = "0.9.0-rc.0"
22+
cipher = "0.5.0-rc.0"
23+
cmac = "0.8.0-rc.0"
24+
ctr = "0.10.0-rc.0"
2525
dbl = "0.4.0-rc.1"
26-
digest = { version = "=0.11.0-pre.10", features = ["mac"] }
26+
digest = { version = "0.11.0-rc.0", features = ["mac"] }
2727
zeroize = { version = "1", optional = true, default-features = false }
2828

2929
# optional dependencies
30-
pmac = { version = "0.8.0-pre.2", optional = true }
30+
pmac = { version = "0.8.0-rc.0", optional = true }
3131

3232
[dev-dependencies]
3333
blobby = "0.3"
34-
hex-literal = "0.4"
35-
aead = { version = "0.6.0-rc.0", features = ["alloc", "dev"], default-features = false }
34+
hex-literal = "1"
35+
aead = { version = "0.6.0-rc.1", features = ["alloc", "dev"], default-features = false }
3636

3737
[features]
3838
default = ["alloc", "os_rng"]

ascon-aead128/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ categories = ["cryptography", "no-std"]
1212
rust-version = "1.85"
1313

1414
[dependencies]
15-
aead = { version = "0.6.0-rc.0", default-features = false }
15+
aead = { version = "0.6.0-rc.1", default-features = false }
1616
subtle = { version = "2", default-features = false }
1717
zeroize = { version = "1.6", optional = true, default-features = false, features = ["derive"] }
1818
ascon = "0.4"
1919

2020
[dev-dependencies]
21-
aead = { version = "0.6.0-rc.0", features = ["dev"] }
21+
aead = { version = "0.6.0-rc.1", features = ["dev"] }
2222

2323
[features]
2424
default = ["alloc", "os_rng"]

belt-dwp/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ categories = ["cryptography", "no-std"]
1212
rust-version = "1.85"
1313

1414
[dependencies]
15-
aead = { version = "0.6.0-rc.0", default-features = false }
15+
aead = { version = "0.6.0-rc.1", default-features = false }
1616
zeroize = { version = "1.7", default-features = false, optional = true }
1717
universal-hash = { version = "0.6.0-rc.0" }
1818
opaque-debug = { version = "0.3" }
1919
subtle = { version = "2", default-features = false }
2020

21-
belt-block = { version = "0.2.0-pre.2" }
22-
belt-ctr = { version = "0.2.0-pre" }
21+
belt-block = { version = "0.2.0-rc.0" }
22+
belt-ctr = { version = "0.2.0-rc.0" }
2323

2424
[dev-dependencies]
2525
hex-literal = "1"

benches/Cargo.toml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ rust-version = "1.56"
1313
[dependencies]
1414
criterion = "0.4.0"
1515
rand = "0.9.0"
16-
aes = "=0.9.0-pre.3"
16+
aes = "0.9.0-rc.0"
1717
aes-gcm = { path = "../aes-gcm/" }
1818
aes-gcm-siv = { path = "../aes-gcm-siv/" }
1919
ascon-aead = { path = "../ascon-aead/" }
@@ -57,12 +57,3 @@ harness = false
5757
[patch.crates-io]
5858
aead-stream = { path = "../aead-stream" }
5959

60-
crypto-common = { git = "https://github.com/RustCrypto/traits.git" }
61-
aead = { git = "https://github.com/RustCrypto/traits.git" }
62-
63-
chacha20 = { git = "https://github.com/RustCrypto/stream-ciphers.git" }
64-
65-
ctr = { git = "https://github.com/baloo/block-modes.git", branch = "baloo/edition-2024" }
66-
67-
ghash = { git = "https://github.com/RustCrypto/universal-hashes.git" }
68-
polyval = { git = "https://github.com/RustCrypto/universal-hashes.git" }

0 commit comments

Comments
 (0)