kjson 0.0.10

A lightweight JSON parser intended for educational use and learning purposes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod context;
mod de;
mod dict;
mod error;
mod number;
mod stack;
mod value;

pub use crate::de::*;
pub use crate::error::ParseError;
pub use crate::value::Value;