Build Status

This library contains a collection of tools to help interacting with json encoded data.

Features

Usage

Add this to your Cargo.toml toml [dependencies] json-tools = "*"

Add this to your lib ... ```Rust extern crate json_tools;

use json_tools::Lexer;

for token in Lexer::new(r#"{ "face": "😂" }"#.bytes()) { println!("{:?}", token); } ```

Motivation

This library may possibly never grow bigger than the two features originally mentioned, as it was created as a workaround to missing features in serde.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.