mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Use std::simd instead of the simd crate
This commit is contained in:
parent
62c37e00ab
commit
266cb29788
5 changed files with 10 additions and 20 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue