eventson 0.1.0

An event based JSON parser with competitive performance
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub(crate) mod buf;
pub(crate) mod parse;

#[doc(hidden)]
pub mod lex;

pub mod error;

// TODO: Maybe move this to another module
pub use lex::Number;
pub use parse::{Event, Parser};