lexington 0.3.0

A very simple library for lexing / parsing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Private modules
mod lexer;
mod matcher;
mod parser;
mod scanner;
mod token;
// Public modules
pub mod util;
// Exports from private modules
pub use lexer::*;
pub use matcher::*;
pub use parser::*;
pub use scanner::*;
pub use token::*;