Skip to content

Commit dcb89f4

Browse files
committed
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;`.
1 parent 6d31685 commit dcb89f4

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,6 @@ extern crate bincode;
8585
extern crate serde_json;
8686
#[cfg(all(test, feature = "serde"))]
8787
extern crate serde_test;
88-
#[cfg(all(test, feature = "unstable"))]
89-
extern crate test;
9088

9189
#[cfg(test)]
9290
#[macro_use]

0 commit comments

Comments
 (0)