diff options
author | Sam Scott <sam.scott89@gmail.com> | 2017-10-31 23:07:39 +0000 |
---|---|---|
committer | Sam Scott <sam.scott89@gmail.com> | 2017-10-31 23:07:39 +0000 |
commit | 8a18724f53ac35095ed603a2fb259f0abdf56daf (patch) | |
tree | afd9b194fea2110c6a3336a136a07d399c0d1af3 /src/lib.rs | |
parent | d858a267697da48d56e099eac6860f5ab8e69e46 (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.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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)] |