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