parsy 0.5.6

An easy-to-use, efficient parser combinators library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![forbid(unsafe_code)]
#![forbid(unused_must_use)]
#![warn(unused_extern_crates)]

mod error;
mod input;
mod parser;
mod token;

pub mod parsers;

pub use error::*;
pub use input::*;
pub use parser::*;
pub use parsers::*;
pub use token::*;