lexpar 0.1.0

Lexer and parser crate for stable Rust. This implementation favors compile-time over run-time for generating grammars.
Documentation
  • Coverage
  • 64%
    16 out of 25 items documented3 out of 13 items with examples
  • Size
  • Source code size: 98.56 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 6.4 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • d3lio/lexpar
    10 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • d3lio

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.