1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! Convertor of JSON text into gron format
//!
//! Gron is a representation that is easy to grep. Similarly to JSON
//! it can be easily evaluated with javascript interpreter.
//!
//! * [Original gron](https://github.com/tomnomnom/gron)
//! * [Documentation](https://tailhook.github.io/gron/gron/index.html)

extern crate rustc_serialize;

mod json_struct;

pub use json_struct::json_to_gron;