From 93a5c871787e511133ad80c0b32598dca52db0b6 Mon Sep 17 00:00:00 2001 From: Matthew LeVan Date: Thu, 21 Dec 2023 14:35:45 -0500 Subject: [PATCH] `ares_crypto`: remove unused imports --- rust/ares_crypto/src/aes_siv.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/ares_crypto/src/aes_siv.rs b/rust/ares_crypto/src/aes_siv.rs index 68bd684..eba0298 100644 --- a/rust/ares_crypto/src/aes_siv.rs +++ b/rust/ares_crypto/src/aes_siv.rs @@ -121,8 +121,8 @@ pub fn ac_aes_siv_de ( #[cfg(test)] #[cfg(feature = "test_vs_urcrypt")] mod urcrypt_tests { - use aes_siv::{siv::Aes128Siv, KeyInit, aead::rand_core::CryptoRngCore}; - use rand::{rngs::OsRng, Rng}; + use aes_siv::aead::rand_core::CryptoRngCore; + use rand::rngs::OsRng; use super::{ac_aes_siv_de, ac_aes_siv_en}; use urcrypt_sys::{ urcrypt_aes_siv_data, urcrypt_aes_siva_de, urcrypt_aes_siva_en, urcrypt_aes_sivb_de,