From da8b1b5439003a3feafa2ac9ee0da18a6b816e54 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Tue, 19 Jul 2022 14:14:48 +1000 Subject: [PATCH] Remove unused extern crate test Recently we removed the "unstable" feature, I missed the duplicate `extern crate test` when doing so :( Since we no longer have the "unstable" feature this line of code is never compiled in. Remove the unused ``extern crate test`, we have the correct line further up the file `#[cfg(bench)] extern crate test;`. --- src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 382879ae..eff15e8e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -85,8 +85,6 @@ extern crate bincode; extern crate serde_json; #[cfg(all(test, feature = "serde"))] extern crate serde_test; -#[cfg(all(test, feature = "unstable"))] -extern crate test; #[cfg(test)] #[macro_use]