Crates.io | lexpar |
lib.rs | lexpar |
version | 0.1.0 |
source | src |
created_at | 2018-05-03 06:30:48.224508 |
updated_at | 2018-05-03 06:30:48.224508 |
description | Lexer and parser crate for stable Rust. This implementation favors compile-time over run-time for generating grammars. |
homepage | https://github.com/d3lio/lexpar |
repository | https://github.com/d3lio/lexpar |
max_upload_size | |
id | 63526 |
size | 97,158 |
Lexer and parser crate for stable Rust.
Add lexpar
as a dependency in your Cargo.toml
:
[dependency]
lexpar = "^0.1.0"
Then add this snippet to your crate's root:
#[macro_use]
extern crate lexpar;
Run a specific example with cargo run --example <name>
where name can be either ml
or rust
.