diff options
Diffstat (limited to 'components/layout')
-rw-r--r-- | components/layout/Cargo.toml | 4 | ||||
-rw-r--r-- | components/layout/lib.rs | 2 |
2 files changed, 0 insertions, 6 deletions
diff --git a/components/layout/Cargo.toml b/components/layout/Cargo.toml index 0a88c7fa866..34926c41c2f 100644 --- a/components/layout/Cargo.toml +++ b/components/layout/Cargo.toml @@ -38,9 +38,6 @@ path = "../script_traits" [dependencies.style] path = "../style" -[dependencies.style_traits] -path = "../style_traits" - [dependencies.plugins] path = "../plugins" @@ -60,7 +57,6 @@ git = "https://github.com/servo/ipc-channel" app_units = {version = "0.1", features = ["plugins"]} cssparser = { version = "0.4", features = [ "serde-serialization" ] } log = "0.3" -encoding = "0.2" fnv = "1.0" bitflags = "0.3" rustc-serialize = "0.3" diff --git a/components/layout/lib.rs b/components/layout/lib.rs index 5a3197dd996..7b9caa88313 100644 --- a/components/layout/lib.rs +++ b/components/layout/lib.rs @@ -26,7 +26,6 @@ extern crate bitflags; extern crate canvas_traits; extern crate core; extern crate cssparser; -extern crate encoding; extern crate euclid; extern crate fnv; extern crate gfx; @@ -52,7 +51,6 @@ extern crate serde_json; extern crate smallvec; #[macro_use(atom, ns)] extern crate string_cache; extern crate style; -extern crate style_traits; extern crate time; extern crate unicode_bidi; extern crate unicode_script; |