summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorSam Scott <sam.scott89@gmail.com>2017-11-09 16:17:17 +0000
committerSam Scott <sam.scott89@gmail.com>2017-11-09 16:38:40 +0000
commitd74354b1eaccfb6ea264fca81f3dd936afdff44f (patch)
treedbc9b69999849559d5dfb6595a4d3cc3870853d1 /src/lib.rs
parent32c685bf7472ebbc8f10b9d9e57f29f2d7501566 (diff)
Refactor Serialize logic to produce correct strings.
Removes the dependency on the `url` crate because we only need the percent decoding, with our own encoding set. All keys/values are conservatively percent-encoded, but the square brackets are untouched. Compatible with strict decoding, and potentially less error prone.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index e6f5190..16d4683 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -126,7 +126,6 @@ extern crate error_chain;
extern crate percent_encoding;
#[macro_use]
extern crate serde;
-extern crate url;
mod de;
mod error;