From a0df0d99cc868ffeb2beb7f06707742cf458dc03 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Jun 2026 10:17:20 +0000 Subject: [PATCH] build(deps): bump ascon-aead from 0.5.2 to 0.6.0 Bumps [ascon-aead](https://github.com/sebastinas/ascon-aead) from 0.5.2 to 0.6.0. - [Commits](https://github.com/sebastinas/ascon-aead/compare/ascon-aead-v0.5.2...ascon-aead-v0.6.0) --- updated-dependencies: - dependency-name: ascon-aead dependency-version: 0.6.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 23 +++++++++++++++++------ Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3ff760be..b0b871f9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -12,6 +12,16 @@ dependencies = [ "generic-array", ] +[[package]] +name = "aead" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef60ac202874e574ce7a7158cc8bca7313dd344322482e4fadee288bf4a306b8" +dependencies = [ + "crypto-common 0.2.2", + "inout 0.2.2", +] + [[package]] name = "aegis" version = "0.9.12" @@ -39,7 +49,7 @@ version = "0.10.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" dependencies = [ - "aead", + "aead 0.5.2", "aes", "cipher 0.4.4", "ctr", @@ -53,7 +63,7 @@ version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ae0784134ba9375416d469ec31e7c5f9fa94405049cf08c5ce5b4698be673e0d" dependencies = [ - "aead", + "aead 0.5.2", "aes", "cipher 0.4.4", "ctr", @@ -124,12 +134,13 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" [[package]] name = "ascon-aead" -version = "0.5.2" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "591bc0af38c82c526874bd78ae5c0fedc540530973ec68b32e80e9c0ce86e46f" +checksum = "6cba922132fed390c20be89a16fa713999c46b2ce84ac4b0ecee0f3586a39d88" dependencies = [ - "aead", + "aead 0.6.0", "ascon-core", + "inout 0.2.2", "subtle", ] @@ -320,7 +331,7 @@ version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35" dependencies = [ - "aead", + "aead 0.5.2", "chacha20 0.9.1", "cipher 0.4.4", "poly1305", diff --git a/Cargo.toml b/Cargo.toml index 590ce2dc..b7ffe842 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -179,7 +179,7 @@ chacha20poly1305 = "0.10.1" aes-gcm = "0.10.3" aes-gcm-siv = "0.11.1" aegis = "0.9.12" -ascon-aead = { version = "0.5", default-features = false, features = ["alloc"] } +ascon-aead = { version = "0.6", default-features = false, features = ["alloc"] } serde_json = "1" ring = "0.17.14" rsa = { version = "0.9.10", default-features = false, features = ["std", "u64_digit", "sha2"] }