From 2e92472fe74fcb0f38bdec41b870b64cf533de44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jesu=CC=81s=20Pe=CC=81rez?= Date: Wed, 14 Jan 2026 21:37:16 +0000 Subject: [PATCH] chore: review AES warning genericArray --- src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index a32af40..43048ad 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,9 @@ //! SecretumVault - Post-quantum secrets management system +// Suppress deprecation warnings from aes-gcm/chacha20poly1305 dependencies +// TODO: Remove when upgrading to aes-gcm 0.11+ (stable) with hybrid-array support +#![allow(deprecated)] + pub mod auth; pub mod config; pub mod core;