diff options
author | Emilio Cobos Álvarez <ecoal95@gmail.com> | 2016-11-12 21:34:31 +0100 |
---|---|---|
committer | Emilio Cobos Álvarez <ecoal95@gmail.com> | 2016-11-12 21:34:31 +0100 |
commit | 5746a942c6fb7ab033751b70e2005f0d1b044e0d (patch) | |
tree | eec3331b9b277be381bbd1f95009d1fb6e86b9fa | |
parent | 290a1696dc6b16c421a40dc08abdc072a2fb4cf2 (diff) | |
download | servo-5746a942c6fb7ab033751b70e2005f0d1b044e0d.tar.gz servo-5746a942c6fb7ab033751b70e2005f0d1b044e0d.zip |
layout: Only specify parking_lot's `nightly` feature in `layout_thread`.
This makes necessary only one line change to remove it if needed.
-rw-r--r-- | components/layout/Cargo.toml | 2 | ||||
-rw-r--r-- | components/style/Cargo.toml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/components/layout/Cargo.toml b/components/layout/Cargo.toml index b1b0eb176f0..62f6cf47ecc 100644 --- a/components/layout/Cargo.toml +++ b/components/layout/Cargo.toml @@ -27,7 +27,7 @@ log = "0.3.5" msg = {path = "../msg"} net_traits = {path = "../net_traits"} ordered-float = "0.2.2" -parking_lot = {version = "0.3.3", features = ["nightly"]} +parking_lot = "0.3.3" plugins = {path = "../plugins"} profile_traits = {path = "../profile_traits"} range = {path = "../range"} diff --git a/components/style/Cargo.toml b/components/style/Cargo.toml index b289a2856cd..3494ea263c2 100644 --- a/components/style/Cargo.toml +++ b/components/style/Cargo.toml @@ -17,7 +17,7 @@ gecko = ["nsstring_vendor"] servo = ["serde/unstable", "serde", "serde_derive", "heapsize_derive", "style_traits/servo", "app_units/plugins", "servo_atoms", "html5ever-atoms", "cssparser/heap_size", "cssparser/serde-serialization", - "url/heap_size", "plugins", "parking_lot/nightly"] + "url/heap_size", "plugins"] testing = [] [dependencies] |