1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
//! Library to parse JSON #![deny(missing_docs)] #![no_std] #![forbid(unsafe_code)] #[macro_use] extern crate alloc; mod array; mod boolean; mod error; mod null; mod number; mod object; mod parser; mod string; pub use error::*; pub use parser::{parse, Number, Object, Value};