json-tools 1.1.0

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 lexer;
mod key_value_filter;
mod reader;
mod iter_ext;

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