From cb63de71cbb94de7447d6eb0b5e1eb7fe8c230df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Kj=C3=A4ll?= Date: Tue, 31 Oct 2023 17:03:51 +0100 Subject: [PATCH] eax: gate test on feature it needs (#558) --- eax/tests/aes128eax.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/eax/tests/aes128eax.rs b/eax/tests/aes128eax.rs index df8a3857..656648ae 100644 --- a/eax/tests/aes128eax.rs +++ b/eax/tests/aes128eax.rs @@ -1,5 +1,6 @@ //! Test vectors from Appendix G: //! https://web.cs.ucdavis.edu/~rogaway/papers/eax.pdf +#![cfg(feature = "alloc")] use aes::Aes128; use eax::Eax;