1#![allow(clippy::mutable_key_type)]
2pub mod lexer;
3mod reader;
4
5pub use reader::read;
6pub use reader::read_many;
7pub use reader::read_many_with_spans;
8pub use reader::read_many_with_spans_recover;
9pub use reader::read_many_with_symbol_spans;