diff options
Diffstat (limited to 'components/gfx/lib.rs')
-rw-r--r-- | components/gfx/lib.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/components/gfx/lib.rs b/components/gfx/lib.rs index 9c3b9680f38..f0acfdfa084 100644 --- a/components/gfx/lib.rs +++ b/components/gfx/lib.rs @@ -3,7 +3,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ // For SIMD -#![cfg_attr(feature = "unstable", feature(cfg_target_feature))] +#![cfg_attr(feature = "unstable", feature(cfg_target_feature, stdsimd))] #![deny(unsafe_code)] @@ -50,9 +50,6 @@ extern crate range; extern crate servo_arc; #[macro_use] extern crate servo_atoms; extern crate servo_url; -#[cfg(feature = "unstable")] -#[cfg(any(target_feature = "sse2", target_feature = "neon"))] -extern crate simd; extern crate smallvec; extern crate style; extern crate time; |