Skip to content

Commit ccab111

Browse files
committed
Bump dependency requirements
Updates the following dependency requirements in Cargo.toml files: - `aead` v0.6.0-rc.10 - `aes` v0.9.0-rc.4 - `belt-block` v0.2.0-rc.3 - `belt-ctr` v0.2.0-rc.3 - `chacha20` v0.10.0-rc.10 - `cipher` v0.5.0-rc.6 - `cmac` v0.8.0-rc.4 - `ctr` v0.10.0-rc.2 - `digest` v0.11.0-rc.11 - `ghash` v0.6.0-rc.5 - `pmac` v0.8.0-rc.4 - `poly1305` v0.9.0-rc.5 - `polyval` v0.7.0-rc.6 - `universal-hash` v0.6.0-rc.10 Releases the following new versions: - `aead-stream` v0.6.0-rc.3 - `aes-gcm` v0.11.0-rc.3 - `aes-gcm-siv` v0.12.0-rc.3 - `aes-siv` v0.8.0-rc.3 - `ascon-aead128` v0.1.0-rc.3 - `belt-dwp` v0.1.0-rc.3 - `ccm` v0.6.0-rc.3 - `chacha20poly1305` v0.11.0-rc.3 - `deoxys` v0.2.0-rc.3 - `eax` v0.6.0-rc.3 - `ocb3` v0.2.0-rc.3 - `xaes-256-gcm` v0.1.0-rc.3
1 parent 30ab5ef commit ccab111

16 files changed

Lines changed: 143 additions & 143 deletions

File tree

Cargo.lock

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

aead-stream/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aead-stream"
3-
version = "0.6.0-rc.2"
3+
version = "0.6.0-rc.3"
44
description = "Generic implementation of the STREAM online authenticated encryption construction"
55
authors = ["RustCrypto Developers"]
66
edition = "2024"
@@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]
1313
rust-version = "1.85"
1414

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

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

aes-gcm-siv/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aes-gcm-siv"
3-
version = "0.12.0-rc.2"
3+
version = "0.12.0-rc.3"
44
description = """
55
Pure Rust implementation of the AES-GCM-SIV Misuse-Resistant Authenticated
66
Encryption Cipher (RFC 8452) with optional architecture-specific
@@ -17,16 +17,16 @@ categories = ["cryptography", "no-std"]
1717
rust-version = "1.85"
1818

1919
[dependencies]
20-
aead = { version = "0.6.0-rc.8", default-features = false }
21-
aes = { version = "0.9.0-rc.2", optional = true }
22-
cipher = "0.5.0-rc.6"
23-
ctr = "0.10.0-rc.2"
24-
polyval = { version = "0.7.0-rc.6", default-features = false }
20+
aead = { version = "0.6.0-rc.10", default-features = false }
21+
aes = { version = "0.9.0-rc.4", optional = true }
22+
cipher = "0.5.0-rc.8"
23+
ctr = "0.10.0-rc.3"
24+
polyval = { version = "0.7.0-rc.7", 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.8", features = ["dev"], default-features = false }
29+
aead = { version = "0.6.0-rc.10", features = ["dev"], default-features = false }
3030

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

aes-gcm/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aes-gcm"
3-
version = "0.11.0-rc.2"
3+
version = "0.11.0-rc.3"
44
description = """
55
Pure Rust implementation of the AES-GCM (Galois/Counter Mode)
66
Authenticated Encryption with Associated Data (AEAD) Cipher
@@ -17,18 +17,18 @@ categories = ["cryptography", "no-std"]
1717
rust-version = "1.85"
1818

1919
[dependencies]
20-
aead = { version = "0.6.0-rc.8", default-features = false }
21-
cipher = "0.5.0-rc.6"
22-
ctr = "0.10.0-rc.2"
23-
ghash = { version = "0.6.0-rc.4", default-features = false }
20+
aead = { version = "0.6.0-rc.10", default-features = false }
21+
cipher = "0.5.0-rc.8"
22+
ctr = "0.10.0-rc.3"
23+
ghash = { version = "0.6.0-rc.5", default-features = false }
2424
subtle = { version = "2", default-features = false }
2525

2626
# optional dependencies
27-
aes = { version = "0.9.0-rc.2", optional = true }
27+
aes = { version = "0.9.0-rc.4", optional = true }
2828
zeroize = { version = "1", optional = true, default-features = false }
2929

3030
[dev-dependencies]
31-
aead = { version = "0.6.0-rc.8", features = ["alloc", "dev"], default-features = false }
31+
aead = { version = "0.6.0-rc.10", features = ["alloc", "dev"], default-features = false }
3232
hex-literal = "1"
3333

3434
[features]

aes-siv/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aes-siv"
3-
version = "0.8.0-rc.2"
3+
version = "0.8.0-rc.3"
44
description = """
55
Pure Rust implementation of the AES-SIV Misuse-Resistant Authenticated
66
Encryption Cipher (RFC 5297) with optional architecture-specific
@@ -17,20 +17,20 @@ categories = ["cryptography", "no-std"]
1717
rust-version = "1.85"
1818

1919
[dependencies]
20-
aead = "0.6.0-rc.8"
21-
aes = "0.9.0-rc.2"
22-
cipher = "0.5.0-rc.6"
23-
cmac = "0.8.0-rc.3"
24-
ctr = "0.10.0-rc.2"
20+
aead = "0.6.0-rc.10"
21+
aes = "0.9.0-rc.4"
22+
cipher = "0.5.0-rc.8"
23+
cmac = "0.8.0-rc.4"
24+
ctr = "0.10.0-rc.3"
2525
dbl = "0.5"
26-
digest = { version = "0.11.0-rc.9", features = ["mac"] }
26+
digest = { version = "0.11.0-rc.11", features = ["mac"] }
2727

2828
# optional dependencies
29-
pmac = { version = "0.8.0-rc.3", optional = true }
29+
pmac = { version = "0.8.0-rc.4", optional = true }
3030
zeroize = { version = "1", optional = true, default-features = false }
3131

3232
[dev-dependencies]
33-
aead = { version = "0.6.0-rc.8", features = ["alloc", "dev"], default-features = false }
33+
aead = { version = "0.6.0-rc.10", features = ["alloc", "dev"], default-features = false }
3434
blobby = "0.4"
3535
hex-literal = "1"
3636

ascon-aead128/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ascon-aead128"
3-
version = "0.1.0-rc.2"
3+
version = "0.1.0-rc.3"
44
description = "Implementation of the Ascon-AEAD128 authenticated encryption scheme"
55
authors = ["RustCrypto Developers"]
66
edition = "2024"
@@ -12,13 +12,13 @@ categories = ["cryptography", "no-std"]
1212
rust-version = "1.85"
1313

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

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

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

belt-dwp/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "belt-dwp"
3-
version = "0.1.0-rc.2"
3+
version = "0.1.0-rc.3"
44
description = "Pure Rust implementation of the Belt-DWP authenticated encryption algorithm (STB 34.101.31-2020)"
55
edition = "2024"
66
license = "Apache-2.0 OR MIT"
@@ -12,12 +12,12 @@ categories = ["cryptography", "no-std"]
1212
rust-version = "1.85"
1313

1414
[dependencies]
15-
aead = { version = "0.6.0-rc.8", default-features = false }
16-
belt-block = { version = "0.2.0-rc.2" }
17-
belt-ctr = { version = "0.2.0-rc.2" }
15+
aead = { version = "0.6.0-rc.10", default-features = false }
16+
belt-block = { version = "0.2.0-rc.3" }
17+
belt-ctr = { version = "0.2.0-rc.3" }
1818
opaque-debug = { version = "0.3" }
1919
subtle = { version = "2", default-features = false }
20-
universal-hash = { version = "0.6.0-rc.7" }
20+
universal-hash = { version = "0.6.0-rc.10" }
2121
zeroize = { version = "1.8", default-features = false, optional = true }
2222

2323
[dev-dependencies]

belt-dwp/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ pub use belt_block::BeltBlock;
8080
use aead::array::ArraySize;
8181
use aead::consts::{True, U8, U16};
8282
use aead::{TagPosition, inout::InOutBuf};
83-
use belt_block::cipher::crypto_common::InnerUser;
83+
use belt_block::cipher::common::InnerUser;
8484
use belt_block::cipher::{Block, BlockCipherEncrypt, StreamCipher};
8585
use belt_ctr::cipher::InnerIvInit;
8686
use belt_ctr::{BeltCtr, BeltCtrCore};
8787
use core::marker::PhantomData;
8888
use universal_hash::UniversalHash;
89-
use universal_hash::crypto_common::{BlockSizeUser, InnerInit};
89+
use universal_hash::common::{BlockSizeUser, InnerInit};
9090
use universal_hash::typenum::{IsLessOrEqual, NonZero};
9191

9292
/// Nonce type for [`Dwp`]

benches/Cargo.toml

Lines changed: 1 addition & 1 deletion
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-rc.2"
16+
aes = "0.9.0-rc.4"
1717
aes-gcm = { path = "../aes-gcm/" }
1818
aes-gcm-siv = { path = "../aes-gcm-siv/" }
1919
ascon-aead128 = { path = "../ascon-aead128/" }

ccm/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ccm"
3-
version = "0.6.0-rc.2"
3+
version = "0.6.0-rc.3"
44
description = "Generic implementation of the Counter with CBC-MAC (CCM) mode"
55
authors = ["RustCrypto Developers"]
66
edition = "2024"
@@ -14,14 +14,14 @@ keywords = ["encryption", "aead"]
1414
rust-version = "1.85"
1515

1616
[dependencies]
17-
aead = { version = "0.6.0-rc.8", default-features = false }
18-
cipher = { version = "0.5.0-rc.6", default-features = false }
19-
ctr = { version = "0.10.0-rc.2", default-features = false }
17+
aead = { version = "0.6.0-rc.10", default-features = false }
18+
cipher = { version = "0.5.0-rc.8", default-features = false }
19+
ctr = { version = "0.10.0-rc.3", default-features = false }
2020
subtle = { version = "2", default-features = false }
2121

2222
[dev-dependencies]
23-
aead = { version = "0.6.0-rc.8", features = ["dev"], default-features = false }
24-
aes = { version = "0.9.0-rc.2" }
23+
aead = { version = "0.6.0-rc.10", features = ["dev"], default-features = false }
24+
aes = { version = "0.9.0-rc.4" }
2525
hex-literal = "1"
2626

2727
[features]

0 commit comments

Comments
 (0)