From 8a18724f53ac35095ed603a2fb259f0abdf56daf Mon Sep 17 00:00:00 2001 From: Sam Scott Date: Tue, 31 Oct 2017 23:07:39 +0000 Subject: New parsing strategy. - Only perform the percent decoding at the final step (fixes #10). - Reduce allocations by borrowing as much as possible. --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index b7eee87..0d228c1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -78,7 +78,6 @@ dead_code, deprecated, exceeding_bitshifts, - fat_ptr_transmutes, improper_ctypes, missing_docs, mutable_transmutes, @@ -124,6 +123,7 @@ extern crate data_encoding; #[macro_use] extern crate error_chain; +extern crate percent_encoding; #[macro_use] extern crate serde; extern crate url; @@ -135,7 +135,7 @@ mod ser; pub use error::Error; #[doc(inline)] -pub use de::{QsDeserializer, from_bytes, from_reader, from_str}; +pub use de::{QsDeserializer, from_bytes, from_str}; #[doc(inline)] pub use de::Config; #[doc(inline)] -- cgit v1.2.3