json-tools 1.1.2

A zero-copy json-lexer, filters and serializer.
Documentation
1
2
3
4
5
6
7
8
9
10
//! For usage examples, please have a look at the *tests* and *benchmarks*.
mod iter_ext;
mod key_value_filter;
mod lexer;
mod reader;

pub use iter_ext::IteratorExt;
pub use key_value_filter::FilterTypedKeyValuePairs;
pub use lexer::{Buffer, BufferType, Lexer, Span, Token, TokenType};
pub use reader::TokenReader;