json-pop 0.0.2

A small JSON parser from parser/lexer generators.
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate lalrpop;

fn main() {
    let mut lalrpop = lalrpop::Configuration::new();
    lalrpop
        .use_cargo_dir_conventions()
        .emit_rerun_directives(true)
        .process()
        .unwrap();
}