diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2016-06-22 00:04:22 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2016-06-22 15:49:07 +0200 |
commit | b103e8baa7145a125f5eb02debe0947ecc24776d (patch) | |
tree | eca83fb4902266e803d945fca5f88b11510f3535 /components/util | |
parent | 3822bb269c045be4d04b2c8f003c6c16496c7a74 (diff) | |
download | servo-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.toml | 9 |
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" |