parsy 0.2.1

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 parser;
pub mod parsers;
mod token;

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

#[cfg(test)]
mod tests;