diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2018-04-19 18:42:53 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-19 18:42:53 -0400 |
commit | 05fe8fa08d507836ce5659ff56f83022a90b241a (patch) | |
tree | 700a336864beab5bf8315167aee16184b384c1ec | |
parent | 1d8fd8f863720e86b971294d1e35a962fdb96960 (diff) | |
parent | e7e52d855b47365e3b883a121f607c48172d84f1 (diff) | |
download | servo-05fe8fa08d507836ce5659ff56f83022a90b241a.tar.gz servo-05fe8fa08d507836ce5659ff56f83022a90b241a.zip |
Auto merge of #20666 - servo:url, r=nox
Fix building servo_url by itself
Fix #20664
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/20666)
<!-- Reviewable:end -->
-rw-r--r-- | components/url/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/url/Cargo.toml b/components/url/Cargo.toml index cbd96488918..46aee70b733 100644 --- a/components/url/Cargo.toml +++ b/components/url/Cargo.toml @@ -10,9 +10,9 @@ name = "servo_url" path = "lib.rs" [dependencies] -malloc_size_of = { path = "../malloc_size_of" } +malloc_size_of = { path = "../malloc_size_of", features = ["servo"] } malloc_size_of_derive = { path = "../malloc_size_of_derive" } -serde = {version = "1.0"} +serde = {version = "1.0", features = ["derive"]} servo_rand = {path = "../rand"} url = "1.2" url_serde = {version = "0.2"} |