aboutsummaryrefslogtreecommitdiffstats
path: root/components/msg
diff options
context:
space:
mode:
authorMs2ger <Ms2ger@gmail.com>2016-01-11 14:25:40 +0100
committerMs2ger <Ms2ger@gmail.com>2016-01-11 14:25:40 +0100
commit7e3d1f88a018df7ec55f07aa57e49091ae30bbf4 (patch)
tree7a518a8632a47d4689993f142bbf8ab6008dc7e9 /components/msg
parente89dd05a169aa16267bdb2dbfe5bca01ad6cfe84 (diff)
downloadservo-7e3d1f88a018df7ec55f07aa57e49091ae30bbf4.tar.gz
servo-7e3d1f88a018df7ec55f07aa57e49091ae30bbf4.zip
Remove unused dependencies from the msg crate.
Diffstat (limited to 'components/msg')
-rw-r--r--components/msg/Cargo.toml9
-rw-r--r--components/msg/lib.rs6
2 files changed, 0 insertions, 15 deletions
diff --git a/components/msg/Cargo.toml b/components/msg/Cargo.toml
index 1d859502785..7a2cbfd61e0 100644
--- a/components/msg/Cargo.toml
+++ b/components/msg/Cargo.toml
@@ -10,10 +10,6 @@ path = "lib.rs"
[dependencies.util]
path = "../util"
-[dependencies.azure]
-git = "https://github.com/servo/rust-azure"
-features = ["plugins"]
-
[dependencies.layers]
git = "https://github.com/servo/rust-layers"
features = ["plugins"]
@@ -26,7 +22,6 @@ path = "../plugins"
[dependencies]
cssparser = { version = "0.4", features = [ "serde-serialization" ] }
-app_units = {version = "0.1", features = ["plugins"]}
bitflags = "0.3"
hyper = { version = "0.7", features = [ "serde-serialization" ] }
rustc-serialize = "0.3.4"
@@ -34,7 +29,3 @@ euclid = {version = "0.4", features = ["plugins"]}
serde = "0.6"
serde_macros = "0.6"
url = "0.5.2"
-
-[target.x86_64-apple-darwin.dependencies]
-core-foundation = "0.2"
-io-surface = "0.1.0"
diff --git a/components/msg/lib.rs b/components/msg/lib.rs
index 0d88a456917..473793b1bed 100644
--- a/components/msg/lib.rs
+++ b/components/msg/lib.rs
@@ -5,17 +5,11 @@
#![feature(custom_attribute, custom_derive, plugin)]
#![plugin(serde_macros, plugins)]
-extern crate app_units;
-extern crate azure;
#[macro_use]
extern crate bitflags;
-#[cfg(target_os = "macos")]
-extern crate core_foundation;
extern crate cssparser;
extern crate euclid;
extern crate hyper;
-#[cfg(target_os = "macos")]
-extern crate io_surface;
extern crate ipc_channel;
extern crate layers;
extern crate rustc_serialize;