From dc0376c2570780e8f6c9aa29184eba399726193c Mon Sep 17 00:00:00 2001 From: Kendall Weihe Date: Thu, 15 Aug 2024 15:41:17 -0400 Subject: [PATCH] Add #[allow(dead_code)] --- crates/web5/src/test_helpers.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/web5/src/test_helpers.rs b/crates/web5/src/test_helpers.rs index 09b9b3df..e434a39e 100644 --- a/crates/web5/src/test_helpers.rs +++ b/crates/web5/src/test_helpers.rs @@ -10,6 +10,7 @@ pub struct TestVector { #[derive(Debug, serde::Deserialize)] pub struct TestVectorFile { + #[allow(dead_code)] pub description: String, pub vectors: Vec>, }