From b7ef9ed97a0210fb19dd2c7270e6619d3d07d0d7 Mon Sep 17 00:00:00 2001 From: Anthony Ramine Date: Sat, 5 Mar 2016 20:37:26 +0100 Subject: [PATCH] Enable nightly feature for serde in style Some external dependencies (at least webrender_traits) present only in servo and not in geckolib use it already and this prevents Cargo to reuse build artifacts depending on serde between the two targets. --- components/style/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/style/Cargo.toml b/components/style/Cargo.toml index be060d0ca20..a0b1a83f9ce 100644 --- a/components/style/Cargo.toml +++ b/components/style/Cargo.toml @@ -34,7 +34,7 @@ matches = "0.1" num = "0.1.24" rustc-serialize = "0.3" selectors = {version = "0.5", features = ["heap_size", "unstable"]} -serde = "0.6" +serde = {version = "0.6", features = ["nightly"]} serde_macros = "0.6" smallvec = "0.1" string_cache = {version = "0.2.10", features = ["heap_size"]}