1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! [`Parser`] trait and utilities used for musli-json.

#![allow(clippy::module_inception)]

pub(crate) mod integer;
mod parser;
mod slice_parser;
pub(crate) mod string;
#[cfg(test)]
mod tests;
mod token;

pub use self::parser::Parser;
pub(crate) use self::slice_parser::SliceParser;
pub(crate) use self::string::StringReference;
pub(crate) use self::token::Token;