luthor 0.2.0

A collection of lexers for various languages/formats, and the tools required to build them.
Documentation
1
2
3
4
5
6
7
//! Luthor provides a collection of lexers for various formats and languages.
//! It also exposes types that aid in building lexers of your own.
pub mod lexers;
pub mod token;
mod tokenizer;

pub use tokenizer::{Tokenizer, StateFunction};