aboutsummaryrefslogtreecommitdiffstats
path: root/components/util
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2016-06-22 00:04:22 +0200
committerSimon Sapin <simon.sapin@exyr.org>2016-06-22 15:49:07 +0200
commitb103e8baa7145a125f5eb02debe0947ecc24776d (patch)
treeeca83fb4902266e803d945fca5f88b11510f3535 /components/util
parent3822bb269c045be4d04b2c8f003c6c16496c7a74 (diff)
downloadservo-b103e8baa7145a125f5eb02debe0947ecc24776d.tar.gz
servo-b103e8baa7145a125f5eb02debe0947ecc24776d.zip
Remove some usage of unstable features in geckolib
Diffstat (limited to 'components/util')
-rw-r--r--components/util/Cargo.toml9
1 files changed, 5 insertions, 4 deletions
diff --git a/components/util/Cargo.toml b/components/util/Cargo.toml
index 3e810df69cb..c8974dfd583 100644
--- a/components/util/Cargo.toml
+++ b/components/util/Cargo.toml
@@ -10,14 +10,15 @@ path = "lib.rs"
[features]
# servo as opposed to geckolib
-servo = ["serde", "serde_macros", "backtrace", "ipc-channel"]
+servo = ["serde", "serde_macros", "backtrace", "ipc-channel", "app_units/plugins",
+ "euclid/plugins", "euclid/unstable", "url/heap_size", "url/serde"]
[dependencies]
-app_units = {version = "0.2.3"}
+app_units = "0.2.3"
backtrace = {version = "0.2.1", optional = true}
bitflags = "0.7"
deque = "0.3.1"
-euclid = {version = "0.6.4"}
+euclid = "0.6.4"
getopts = "0.2.11"
heapsize = "0.3.0"
ipc-channel = {git = "https://github.com/servo/ipc-channel", optional = true}
@@ -31,7 +32,7 @@ rustc-serialize = "0.3"
serde = {version = "0.7", optional = true}
serde_macros = {version = "0.7", optional = true}
smallvec = "0.1"
-url = {version = "1.0.0"}
+url = "1.0.0"
[target.'cfg(all(unix, not(target_os = "macos"), not(target_os = "ios"), not(target_os = "android")))'.dependencies]
xdg = "2.0"