lexpar

Crates.iolexpar
lib.rslexpar
version0.1.0
sourcesrc
created_at2018-05-03 06:30:48.224508
updated_at2018-05-03 06:30:48.224508
descriptionLexer and parser crate for stable Rust. This implementation favors compile-time over run-time for generating grammars.
homepagehttps://github.com/d3lio/lexpar
repositoryhttps://github.com/d3lio/lexpar
max_upload_size
id63526
size97,158
Delyan Dobrev (d3lio)

documentation

https://docs.rs/lexpar

README

lexpar

Lexer and parser crate for stable Rust.

Documentation

Usage

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;

Examples

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

Commit count: 47

cargo fmt