Update Rust crate aes-gcm to 0.10.3
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing

This commit is contained in:
Pierre HUBERT 2023-09-22 00:09:15 +00:00
parent de7e647347
commit 8ca2333385
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@ -25,9 +25,9 @@ dependencies = [
[[package]] [[package]]
name = "aes-gcm" name = "aes-gcm"
version = "0.10.2" version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "209b47e8954a928e1d72e86eca7000ebb6655fe1436d33eefc2201cad027e237" checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
dependencies = [ dependencies = [
"aead", "aead",
"aes", "aes",

View File

@ -20,7 +20,7 @@ urlencoding = "2.1.3"
# Dependencies for crypto wrapper # Dependencies for crypto wrapper
bincode = { version = "2.0.0-rc.3", optional = true } bincode = { version = "2.0.0-rc.3", optional = true }
aes-gcm = { version = "0.10.2", optional = true } aes-gcm = { version = "0.10.3", optional = true }
rand = { version = "0.8.5", optional = true } rand = { version = "0.8.5", optional = true }
[features] [features]