1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! A crate for parsing and using JSON pointers, as specified in RFC 6901.

#![deny(missing_docs)]

extern crate serde_json;

mod parser;
mod ptr;

pub use parser::ParseError;
pub use ptr::IndexError;
pub use ptr::JsonPointer;