Enable query_encoding in geckolib

This allows the reuse of teh build artifacts of url and all the things that
depends on it between servo and geckolib.
This commit is contained in:
Anthony Ramine 2016-03-05 20:50:28 +01:00
parent b7ef9ed97a
commit d59cad2dd9
2 changed files with 2 additions and 1 deletions

View file

@ -509,6 +509,7 @@ name = "url"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"encoding 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)",
"heapsize 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
"heapsize_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
"matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",

View file

@ -21,7 +21,7 @@ num_cpus = "0.2.2"
selectors = {version = "0.5", features = ["heap_size", "unstable"]}
smallvec = "0.1"
string_cache = {version = "0.2.10", features = ["heap_size", "unstable"]}
url = {version = "0.5.5", features = ["heap_size"]}
url = {version = "0.5.5", features = ["heap_size", "query_encoding", "serde_serialization"]}
[dependencies.log]
version = "0.3"