From 180368eb452d93ef331aa32db70c05a59ec60b8f Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Fri, 16 Feb 2018 02:54:18 +0100 Subject: [PATCH] Remove unused feature flags --- src/lib.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 7ba29e9..f97fa62 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,7 +7,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -#![cfg_attr(feature = "unstable", feature(cfg_target_feature, test, fn_must_use))] +#![cfg_attr(feature = "unstable", feature(fn_must_use))] //! A collection of strongly typed math tools for computer graphics with an inclination //! towards 2d graphics and layout. @@ -62,8 +62,6 @@ extern crate serde; extern crate num_traits; #[cfg(test)] extern crate rand; -#[cfg(feature = "unstable")] -extern crate test; pub use length::Length; pub use scale::TypedScale;