Make script enable the "style/servo" Cargo feature

This enables it to be compiled without libservo:
```
cargo build --manifest-path components/script/Cargo.toml
```

… and then to be added to http://perf.rust-lang.org/
This commit is contained in:
Simon Sapin 2017-11-02 15:01:08 +01:00
parent e64083ccc6
commit 27a2bb1582

View file

@ -85,7 +85,7 @@ servo_geometry = {path = "../geometry" }
servo_rand = {path = "../rand"}
servo_url = {path = "../url"}
smallvec = "0.4"
style = {path = "../style"}
style = {path = "../style", features = ["servo"]}
style_traits = {path = "../style_traits"}
swapper = "0.1"
time = "0.1.12"