From 0e8e7c55e261ff736d5e4195b1d9ac6a1ffb330e Mon Sep 17 00:00:00 2001 From: Pierre Hubert Date: Tue, 23 May 2023 09:48:30 +0000 Subject: [PATCH] Update Rust crate aes-gcm to 0.10.2 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0ea584a..dce1c7e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -25,9 +25,9 @@ dependencies = [ [[package]] name = "aes-gcm" -version = "0.10.1" +version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82e1366e0c69c9f927b1fa5ce2c7bf9eafc8f9268c0b9800729e8b267612447c" +checksum = "209b47e8954a928e1d72e86eca7000ebb6655fe1436d33eefc2201cad027e237" dependencies = [ "aead", "aes", diff --git a/Cargo.toml b/Cargo.toml index 19ae528..1e1ee16 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ urlencoding = "2.1.2" # Dependencies for crypto wrapper bincode = { version = "2.0.0-rc.3", optional = true } -aes-gcm = { version = "0.10.1", optional = true } +aes-gcm = { version = "0.10.2", optional = true } rand = { version = "0.8.5", optional = true } [features] -- 2.45.2