diff options
author | Sam Scott <sam.scott89@gmail.com> | 2017-11-09 16:15:24 +0000 |
---|---|---|
committer | Sam Scott <sam.scott89@gmail.com> | 2017-11-09 16:37:53 +0000 |
commit | 32c685bf7472ebbc8f10b9d9e57f29f2d7501566 (patch) | |
tree | 00e7e887c50e34ed9476313fa979a9614b4767c7 /src/lib.rs | |
parent | 1ee313aa2998feed7d1721e0df8db0e7004fb35d (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.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)] |