From cf052b586d4c05562c6903da7ffbf2ba6330678e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 22 Sep 2023 16:13:18 +0000 Subject: [PATCH] Bump aes-gcm from 0.10.1 to 0.10.3 Bumps [aes-gcm](https://github.com/RustCrypto/AEADs) from 0.10.1 to 0.10.3. - [Commits](https://github.com/RustCrypto/AEADs/compare/aes-gcm-v0.10.1...aes-gcm-v0.10.3) --- updated-dependencies: - dependency-name: aes-gcm dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- client/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1ebfadd..846477a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -25,9 +25,9 @@ dependencies = [ [[package]] name = "aes-gcm" -version = "0.10.1" +version = "0.10.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82e1366e0c69c9f927b1fa5ce2c7bf9eafc8f9268c0b9800729e8b267612447c" +checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" dependencies = [ "aead", "aes", diff --git a/client/Cargo.toml b/client/Cargo.toml index 8d96e23..7303831 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" shared = { path = "../shared" } # Crypto -aes-gcm = { version = "0.10.1", features = ["std"] } +aes-gcm = { version = "0.10.3", features = ["std"] } ed25519-dalek = "1.0.1" rand_chacha = "0.3.1" getrandom = "0.2.8"