1 2 3 4 5 6 7 8 9 10 11 12 13 14
#![doc = include_str!("../Readme.md")]
pub use self::methods::to_string_pretty;
use serde_json::Value;
pub use serde_json::{Error, Number};
pub use self::traits::*;
mod json;
mod methods;
mod traits;
pub type JsonValue = Value;
pub type JsonObject = serde_json::Map<String, Value>;