diff options
Diffstat (limited to 'components/layout')
-rw-r--r-- | components/layout/Cargo.toml | 13 | ||||
-rw-r--r-- | components/layout/lib.rs | 4 |
2 files changed, 7 insertions, 10 deletions
diff --git a/components/layout/Cargo.toml b/components/layout/Cargo.toml index effcbe0d4f0..6b1ad9d2e6d 100644 --- a/components/layout/Cargo.toml +++ b/components/layout/Cargo.toml @@ -10,17 +10,17 @@ name = "layout" path = "lib.rs" [dependencies] -app_units = "0.4.1" +app_units = "0.5" atomic_refcell = "0.1" bitflags = "0.7" canvas_traits = {path = "../canvas_traits"} -euclid = "0.14.4" +euclid = "0.15" fnv = "1.0" gfx = {path = "../gfx"} gfx_traits = {path = "../gfx_traits"} heapsize = "0.4" -html5ever = "0.17" -ipc-channel = "0.7" +html5ever = "0.18" +ipc-channel = "0.8" libc = "0.2" log = "0.3.5" msg = {path = "../msg"} @@ -33,10 +33,9 @@ rayon = "0.8" script_layout_interface = {path = "../script_layout_interface"} script_traits = {path = "../script_traits"} selectors = { path = "../selectors" } -serde = "0.9" -serde_derive = "0.9" +serde = "1.0" servo_geometry = {path = "../geometry"} -serde_json = "0.9" +serde_json = "1.0" servo_config = {path = "../config"} servo_url = {path = "../url"} smallvec = "0.4" diff --git a/components/layout/lib.rs b/components/layout/lib.rs index ca85d83e9d1..de8f4755eeb 100644 --- a/components/layout/lib.rs +++ b/components/layout/lib.rs @@ -36,9 +36,7 @@ extern crate range; extern crate rayon; extern crate script_layout_interface; extern crate script_traits; -extern crate serde; -#[macro_use] -extern crate serde_derive; +#[macro_use] extern crate serde; extern crate serde_json; extern crate servo_config; extern crate servo_geometry; |