diff options
author | Patrick Walton <pcwalton@mimiga.net> | 2015-07-10 11:16:27 -0700 |
---|---|---|
committer | Patrick Walton <pcwalton@mimiga.net> | 2015-07-18 12:43:08 -0700 |
commit | b6485a9eafacc29661aa9d0e3cdcd477eefdb66f (patch) | |
tree | f35644c31699e771b6b2f646831264e6ae6c2087 /components/msg/Cargo.toml | |
parent | a0cf597946446c427c54da363fe989ff68db4270 (diff) | |
download | servo-b6485a9eafacc29661aa9d0e3cdcd477eefdb66f.tar.gz servo-b6485a9eafacc29661aa9d0e3cdcd477eefdb66f.zip |
compositing: Make the constellation messages serializable.
Diffstat (limited to 'components/msg/Cargo.toml')
-rw-r--r-- | components/msg/Cargo.toml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/components/msg/Cargo.toml b/components/msg/Cargo.toml index fefc32ef5b0..d645bddb58b 100644 --- a/components/msg/Cargo.toml +++ b/components/msg/Cargo.toml @@ -21,14 +21,21 @@ git = "https://github.com/servo/rust-layers" [dependencies.png] git = "https://github.com/servo/rust-png" +features = [ "serde-serialization" ] + +[dependencies.hyper] +version = "0.6" +features = [ "serde-serialization" ] + +[dependencies.url] +version = "0.2.36" +features = [ "serde_serialization" ] [dependencies.ipc-channel] git = "https://github.com/pcwalton/ipc-channel" [dependencies] -url = "0.2.35" bitflags = "*" -hyper = "0.6" rustc-serialize = "0.3.4" euclid = "0.1" serde = "*" |