aboutsummaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
Diffstat (limited to 'components')
-rw-r--r--components/canvas/Cargo.toml1
-rw-r--r--components/canvas/lib.rs1
-rw-r--r--components/compositing/Cargo.toml1
-rw-r--r--components/compositing/lib.rs1
-rw-r--r--components/devtools/Cargo.toml1
-rw-r--r--components/devtools/lib.rs1
-rw-r--r--components/gfx/Cargo.toml3
-rw-r--r--components/gfx/lib.rs1
-rw-r--r--components/layout/Cargo.toml4
-rw-r--r--components/layout/lib.rs2
-rw-r--r--components/layout_traits/Cargo.toml1
-rw-r--r--components/layout_traits/lib.rs1
-rw-r--r--components/net/Cargo.toml1
-rw-r--r--components/net/lib.rs1
-rw-r--r--components/net_traits/Cargo.toml1
-rw-r--r--components/net_traits/lib.rs1
-rw-r--r--components/script/Cargo.toml3
-rw-r--r--components/script/lib.rs3
-rw-r--r--components/servo/Cargo.lock13
-rw-r--r--components/servo/Cargo.toml1
-rw-r--r--components/servo/lib.rs1
-rw-r--r--components/servo/main.rs1
22 files changed, 0 insertions, 44 deletions
diff --git a/components/canvas/Cargo.toml b/components/canvas/Cargo.toml
index 6e930730df8..942b10709ca 100644
--- a/components/canvas/Cargo.toml
+++ b/components/canvas/Cargo.toml
@@ -34,7 +34,6 @@ git = "https://github.com/ecoal95/rust-offscreen-rendering-context"
git = "https://github.com/servo/ipc-channel"
[dependencies]
-cssparser = { version = "0.4", features = [ "serde-serialization" ] }
log = "0.3"
num = "0.1.24"
gleam = "0.2"
diff --git a/components/canvas/lib.rs b/components/canvas/lib.rs
index 13827b70459..5a0b1a9e596 100644
--- a/components/canvas/lib.rs
+++ b/components/canvas/lib.rs
@@ -10,7 +10,6 @@
extern crate azure;
extern crate canvas_traits;
extern crate core;
-extern crate cssparser;
extern crate euclid;
extern crate gfx_traits;
extern crate gleam;
diff --git a/components/compositing/Cargo.toml b/components/compositing/Cargo.toml
index 3dad2b63110..da11ccea636 100644
--- a/components/compositing/Cargo.toml
+++ b/components/compositing/Cargo.toml
@@ -69,7 +69,6 @@ git = "https://github.com/pcwalton/gaol"
[dependencies]
app_units = {version = "0.1", features = ["plugins"]}
image = "0.5.0"
-libc = "0.2"
log = "0.3"
num = "0.1.24"
time = "0.1.17"
diff --git a/components/compositing/lib.rs b/components/compositing/lib.rs
index 0274c23f613..7e465e8a4d0 100644
--- a/components/compositing/lib.rs
+++ b/components/compositing/lib.rs
@@ -33,7 +33,6 @@ extern crate image;
extern crate ipc_channel;
extern crate layers;
extern crate layout_traits;
-extern crate libc;
#[macro_use]
extern crate log;
extern crate msg;
diff --git a/components/devtools/Cargo.toml b/components/devtools/Cargo.toml
index 318e17dcb86..b825ef9bc48 100644
--- a/components/devtools/Cargo.toml
+++ b/components/devtools/Cargo.toml
@@ -29,4 +29,3 @@ time = "0.1"
rustc-serialize = "0.3"
serde = "0.6"
serde_macros = "0.6"
-url = "0.5.2"
diff --git a/components/devtools/lib.rs b/components/devtools/lib.rs
index 2db915203bf..0d1e5aac6bd 100644
--- a/components/devtools/lib.rs
+++ b/components/devtools/lib.rs
@@ -28,7 +28,6 @@ extern crate msg;
extern crate rustc_serialize;
extern crate serde;
extern crate time;
-extern crate url;
extern crate util;
use actor::{Actor, ActorRegistry};
diff --git a/components/gfx/Cargo.toml b/components/gfx/Cargo.toml
index e8ed5f45375..4b731d76679 100644
--- a/components/gfx/Cargo.toml
+++ b/components/gfx/Cargo.toml
@@ -61,9 +61,6 @@ features = ["plugins"]
git = "https://github.com/servo/rust-layers"
features = ["plugins"]
-[dependencies.script_traits]
-path = "../script_traits"
-
[dependencies.ipc-channel]
git = "https://github.com/servo/ipc-channel"
diff --git a/components/gfx/lib.rs b/components/gfx/lib.rs
index 733178559d8..6bc600d3d67 100644
--- a/components/gfx/lib.rs
+++ b/components/gfx/lib.rs
@@ -60,7 +60,6 @@ extern crate net_traits;
extern crate profile_traits;
extern crate rand;
extern crate rustc_serialize;
-extern crate script_traits;
extern crate serde;
#[cfg(any(target_arch = "x86_64", target_arch = "aarch64"))]
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;
diff --git a/components/layout_traits/Cargo.toml b/components/layout_traits/Cargo.toml
index 499715bc7b0..2849b45c652 100644
--- a/components/layout_traits/Cargo.toml
+++ b/components/layout_traits/Cargo.toml
@@ -29,7 +29,6 @@ path = "../util"
git = "https://github.com/servo/ipc-channel"
[dependencies]
-euclid = {version = "0.4", features = ["plugins"]}
serde = "0.6"
serde_macros = "0.6"
url = "0.5.2"
diff --git a/components/layout_traits/lib.rs b/components/layout_traits/lib.rs
index fddf5fe8b11..e5b39a1db4b 100644
--- a/components/layout_traits/lib.rs
+++ b/components/layout_traits/lib.rs
@@ -5,7 +5,6 @@
#![feature(custom_derive, plugin)]
#![plugin(serde_macros)]
-extern crate euclid;
extern crate gfx;
extern crate ipc_channel;
extern crate msg;
diff --git a/components/net/Cargo.toml b/components/net/Cargo.toml
index d53d78f3032..3381bc2a131 100644
--- a/components/net/Cargo.toml
+++ b/components/net/Cargo.toml
@@ -38,6 +38,5 @@ cookie = "0.2"
mime_guess = "1.1.1"
flate2 = "0.2.0"
uuid = "0.1.16"
-euclid = {version = "0.4", features = ["plugins"]}
url = "0.5.2"
websocket = "0.14.0"
diff --git a/components/net/lib.rs b/components/net/lib.rs
index 6d8af0ffaa2..85e30432341 100644
--- a/components/net/lib.rs
+++ b/components/net/lib.rs
@@ -12,7 +12,6 @@
extern crate brotli;
extern crate cookie as cookie_rs;
extern crate devtools_traits;
-extern crate euclid;
extern crate flate2;
extern crate hyper;
extern crate ipc_channel;
diff --git a/components/net_traits/Cargo.toml b/components/net_traits/Cargo.toml
index 13fee9e078b..98740f508a8 100644
--- a/components/net_traits/Cargo.toml
+++ b/components/net_traits/Cargo.toml
@@ -21,7 +21,6 @@ path = "../plugins"
[dependencies]
log = "0.3"
-euclid = {version = "0.4", features = ["plugins"]}
hyper = { version = "0.7", features = [ "serde-serialization" ] }
image = "0.5.0"
serde = "0.6"
diff --git a/components/net_traits/lib.rs b/components/net_traits/lib.rs
index ad579d9b2d3..31327582b00 100644
--- a/components/net_traits/lib.rs
+++ b/components/net_traits/lib.rs
@@ -11,7 +11,6 @@
#![feature(custom_attribute)]
#![plugin(serde_macros, plugins)]
-extern crate euclid;
extern crate hyper;
extern crate image as piston_image;
extern crate ipc_channel;
diff --git a/components/script/Cargo.toml b/components/script/Cargo.toml
index 8abc8e8133e..e72e8925f89 100644
--- a/components/script/Cargo.toml
+++ b/components/script/Cargo.toml
@@ -36,9 +36,6 @@ path = "../devtools_traits"
[dependencies.style]
path = "../style"
-[dependencies.style_traits]
-path = "../style_traits"
-
[dependencies.canvas]
path = "../canvas"
diff --git a/components/script/lib.rs b/components/script/lib.rs
index 24483d3182f..0993d090dd5 100644
--- a/components/script/lib.rs
+++ b/components/script/lib.rs
@@ -20,7 +20,6 @@
#![feature(plugin)]
#![feature(slice_patterns)]
#![feature(str_utf16)]
-#![feature(unicode)]
#![deny(unsafe_code)]
#![allow(non_snake_case)]
@@ -60,7 +59,6 @@ extern crate profile_traits;
extern crate rand;
extern crate ref_slice;
extern crate rustc_serialize;
-extern crate rustc_unicode;
extern crate script_traits;
#[macro_use(state_pseudo_classes)] extern crate selectors;
extern crate serde;
@@ -68,7 +66,6 @@ extern crate smallvec;
#[macro_use(atom, ns)] extern crate string_cache;
#[macro_use]
extern crate style;
-extern crate style_traits;
extern crate tendril;
extern crate time;
extern crate unicase;
diff --git a/components/servo/Cargo.lock b/components/servo/Cargo.lock
index 9fbcfe932ff..c2457b269b2 100644
--- a/components/servo/Cargo.lock
+++ b/components/servo/Cargo.lock
@@ -36,7 +36,6 @@ dependencies = [
"script_traits 0.0.1",
"style 0.0.1",
"style_tests 0.0.1",
- "time 0.1.34 (registry+https://github.com/rust-lang/crates.io-index)",
"url 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
"util 0.0.1",
"util_tests 0.0.1",
@@ -147,7 +146,6 @@ version = "0.0.1"
dependencies = [
"azure 0.2.1 (git+https://github.com/servo/rust-azure)",
"canvas_traits 0.0.1",
- "cssparser 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"euclid 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"gfx_traits 0.0.1",
"gleam 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -259,7 +257,6 @@ dependencies = [
"ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)",
"layers 0.2.0 (git+https://github.com/servo/rust-layers)",
"layout_traits 0.0.1",
- "libc 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
"msg 0.0.1",
"net_traits 0.0.1",
@@ -362,7 +359,6 @@ dependencies = [
"serde 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_macros 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
"time 0.1.34 (registry+https://github.com/rust-lang/crates.io-index)",
- "url 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
"util 0.0.1",
]
@@ -630,7 +626,6 @@ dependencies = [
"profile_traits 0.0.1",
"rand 0.3.12 (registry+https://github.com/rust-lang/crates.io-index)",
"rustc-serialize 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)",
- "script_traits 0.0.1",
"serde 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_macros 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
"servo-fontconfig 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -719,13 +714,11 @@ dependencies = [
"euclid 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"gleam 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"layers 0.2.0 (git+https://github.com/servo/rust-layers)",
- "libc 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"msg 0.0.1",
"net_traits 0.0.1",
"script_traits 0.0.1",
"servo-egl 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"servo-glutin 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
- "time 0.1.34 (registry+https://github.com/rust-lang/crates.io-index)",
"url 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
"util 0.0.1",
"x11 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -948,7 +941,6 @@ dependencies = [
"canvas 0.0.1",
"canvas_traits 0.0.1",
"cssparser 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "encoding 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)",
"euclid 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"fnv 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
"gfx 0.0.1",
@@ -971,7 +963,6 @@ dependencies = [
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
"string_cache 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
"style 0.0.1",
- "style_traits 0.0.1",
"time 0.1.34 (registry+https://github.com/rust-lang/crates.io-index)",
"unicode-bidi 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"unicode-script 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -983,7 +974,6 @@ dependencies = [
name = "layout_traits"
version = "0.0.1"
dependencies = [
- "euclid 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"gfx 0.0.1",
"ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)",
"msg 0.0.1",
@@ -1141,7 +1131,6 @@ dependencies = [
"brotli 0.3.20 (git+https://github.com/ende76/brotli-rs)",
"cookie 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"devtools_traits 0.0.1",
- "euclid 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"flate2 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
"hyper 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
"ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)",
@@ -1193,7 +1182,6 @@ dependencies = [
name = "net_traits"
version = "0.0.1"
dependencies = [
- "euclid 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"hyper 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
"image 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)",
"ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)",
@@ -1530,7 +1518,6 @@ dependencies = [
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
"string_cache 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
"style 0.0.1",
- "style_traits 0.0.1",
"tendril 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
"time 0.1.34 (registry+https://github.com/rust-lang/crates.io-index)",
"unicase 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/components/servo/Cargo.toml b/components/servo/Cargo.toml
index 8df856c6967..f5b121d7741 100644
--- a/components/servo/Cargo.toml
+++ b/components/servo/Cargo.toml
@@ -143,7 +143,6 @@ git = "https://github.com/ecoal95/rust-offscreen-rendering-context"
[dependencies]
env_logger = "0.3"
-time = "0.1.12"
bitflags = "0.3"
libc = "0.2"
url = {version = "0.5.2", features = ["serde_serialization", "query_encoding"]}
diff --git a/components/servo/lib.rs b/components/servo/lib.rs
index d63277b129d..7289cdbcdd6 100644
--- a/components/servo/lib.rs
+++ b/components/servo/lib.rs
@@ -18,7 +18,6 @@
//! `WindowMethods` trait.
extern crate gaol;
-extern crate libc;
#[macro_use]
extern crate util as _util;
diff --git a/components/servo/main.rs b/components/servo/main.rs
index bd28a9df810..eca0b3de2eb 100644
--- a/components/servo/main.rs
+++ b/components/servo/main.rs
@@ -31,7 +31,6 @@ extern crate log;
extern crate offscreen_gl_context;
// The Servo engine
extern crate servo;
-extern crate time;
use gleam::gl;
use offscreen_gl_context::{GLContext, NativeGLContext};