Use std::simd instead of the simd crate

This commit is contained in:
Simon Sapin 2018-05-24 17:39:38 +02:00
parent 62c37e00ab
commit 266cb29788
5 changed files with 10 additions and 20 deletions

View file

@ -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;