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