lexpar 0.1.0

Lexer and parser crate for stable Rust. This implementation favors compile-time over run-time for generating grammars.
Documentation
# lexpar

Lexer and parser crate for stable Rust.

[Documentation](https://docs.rs/lexpar)

## Usage

Add `lexpar` as a dependency in your `Cargo.toml`:

```toml
[dependency]
lexpar = "^0.1.0"
```

Then add this snippet to your crate's root:

```rust
#[macro_use]
extern crate lexpar;
```

## Examples

Run a specific example with `cargo run --example <name>` where name can be either `ml` or `rust`.