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 -->
This commit is contained in:
bors-servo 2018-04-19 18:42:53 -04:00 committed by GitHub
commit 05fe8fa08d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,9 +10,9 @@ name = "servo_url"
path = "lib.rs" path = "lib.rs"
[dependencies] [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" } malloc_size_of_derive = { path = "../malloc_size_of_derive" }
serde = {version = "1.0"} serde = {version = "1.0", features = ["derive"]}
servo_rand = {path = "../rand"} servo_rand = {path = "../rand"}
url = "1.2" url = "1.2"
url_serde = {version = "0.2"} url_serde = {version = "0.2"}