From 4e9e8bb5cef5d9b100a40199bae12e84e13c15fe Mon Sep 17 00:00:00 2001 From: Paul Lietar Date: Mon, 25 Apr 2016 15:22:22 +0100 Subject: [PATCH] Downgrade url to 0.5 url 1.0 removed the parse_path API we need. --- Cargo.lock | 22 +++++++++++++++++++++- Cargo.toml | 2 +- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 552f21d9..416705f2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -30,7 +30,7 @@ dependencies = [ "tempfile 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", "tremor 0.1.0 (git+https://github.com/plietar/rust-tremor)", - "url 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.5.9 (registry+https://github.com/rust-lang/crates.io-index)", "vergen 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "vorbis 0.0.14 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -777,6 +777,18 @@ name = "unicode-xid" version = "0.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "url" +version = "0.5.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-bidi 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-normalization 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "uuid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "url" version = "1.0.0" @@ -800,6 +812,14 @@ name = "utf8-ranges" version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "uuid" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "vergen" version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml index 29d26d27..96a2cf75 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ rust-crypto = "~0.2.34" rustc-serialize = "~0.3.16" tempfile = "~2.1.3" time = "~0.1.34" -url = "~1.0.0" +url = "~0.5.0" log = "0.3.5" env_logger = "0.3.2" shannon = { git = "https://github.com/plietar/rust-shannon" }