From 27a2bb1582ad2fe11ab7b14f2ac75e6f6f223c84 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Thu, 2 Nov 2017 15:01:08 +0100 Subject: [PATCH] Make script enable the "style/servo" Cargo feature MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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/ --- components/script/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/script/Cargo.toml b/components/script/Cargo.toml index 299a25f88f6..c87f0085687 100644 --- a/components/script/Cargo.toml +++ b/components/script/Cargo.toml @@ -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"