summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorSam Scott <sam.scott89@gmail.com>2017-10-31 23:07:39 +0000
committerSam Scott <sam.scott89@gmail.com>2017-10-31 23:07:39 +0000
commit8a18724f53ac35095ed603a2fb259f0abdf56daf (patch)
treeafd9b194fea2110c6a3336a136a07d399c0d1af3 /src/lib.rs
parentd858a267697da48d56e099eac6860f5ab8e69e46 (diff)
New parsing strategy.
- Only perform the percent decoding at the final step (fixes #10). - Reduce allocations by borrowing as much as possible.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
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)]