grammarsmith 0.4.0

Common helpers for handwriting lexers and parsers.
Documentation
//! Grammarsmith provides common helpers for writing lexers and parsers.
//!
//! # Examples
//! ```
//! use grammarsmith::*;
//! ```
//!
//!
//! # Crate Features
//!
//! - `serde`: Enable Serde serialization and deserialization for `BytePos` and `Span`.
//!

pub mod parser;
pub mod position;
pub mod scanner;

pub use parser::*;
pub use position::*;
pub use scanner::*;