mirror of
https://github.com/servo/servo.git
synced 2025-09-11 15:38:24 +01:00
Use the packed_simd crate instead of std::simd
`std::simd` was removed in https://github.com/rust-lang/rust/pull/52535. https://crates.io/crates/packed_simd is in the rust-lang-nursery org.
This commit is contained in:
parent
65df9cb73a
commit
1c0941ffc0
4 changed files with 36 additions and 21 deletions
|
@ -13,7 +13,7 @@ test = false
|
|||
doctest = false
|
||||
|
||||
[features]
|
||||
unstable = []
|
||||
unstable = ["packed_simd"]
|
||||
|
||||
[dependencies]
|
||||
app_units = "0.6"
|
||||
|
@ -30,6 +30,7 @@ log = "0.4"
|
|||
malloc_size_of = { path = "../malloc_size_of" }
|
||||
net_traits = {path = "../net_traits"}
|
||||
new-ordered-float = "1.0"
|
||||
packed_simd = {version = "0.1", optional = true}
|
||||
range = {path = "../range"}
|
||||
serde = "1.0"
|
||||
servo_arc = {path = "../servo_arc"}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue