From d74354b1eaccfb6ea264fca81f3dd936afdff44f Mon Sep 17 00:00:00 2001 From: Sam Scott Date: Thu, 9 Nov 2017 16:17:17 +0000 Subject: 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. --- src/lib.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'src/lib.rs') 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; -- cgit v1.2.3