summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorSam Scott <sam.scott89@gmail.com>2017-11-09 16:15:24 +0000
committerSam Scott <sam.scott89@gmail.com>2017-11-09 16:37:53 +0000
commit32c685bf7472ebbc8f10b9d9e57f29f2d7501566 (patch)
tree00e7e887c50e34ed9476313fa979a9614b4767c7 /src/lib.rs
parent1ee313aa2998feed7d1721e0df8db0e7004fb35d (diff)
Implement `strict` option feature.
Permits encoded brackets, and will generally tolerate parsing errors where possible. Permitting, for example, `a%5B[0%5D=1` to decode as `a: vec![1]`. Default behaviour is strict.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 0d228c1..e6f5190 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -135,7 +135,7 @@ mod ser;
pub use error::Error;
#[doc(inline)]
-pub use de::{QsDeserializer, from_bytes, from_str};
+pub use de::{from_bytes, from_str};
#[doc(inline)]
pub use de::Config;
#[doc(inline)]