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

Features

Usage

Build Status

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.