From 9ba7c80761856ae766ec54914add4d9a718932e5 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Sat, 17 Jun 2023 17:52:58 -0700 Subject: [PATCH] Update aes and constant-time-eq --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3cb68c34..f045beeb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,11 +13,11 @@ Library to support the reading and writing of zip files. edition = "2021" [dependencies] -aes = { version = "0.8.2", optional = true } +aes = { version = "0.8.3", optional = true } byteorder = "1.4.3" bzip2 = { version = "0.4.4", optional = true } chrono = { version = "0.4.26", optional = true } -constant_time_eq = { version = "0.2.6", optional = true } +constant_time_eq = { version = "0.3.0", optional = true } crc32fast = "1.3.2" flate2 = { version = "1.0.26", default-features = false, optional = true } hmac = { version = "0.12.1", optional = true, features = ["reset"] }