earley-omnitool 0.0.6

An Earley parser engine.
Documentation
#![cfg_attr(feature = "cargo-clippy", allow(new_without_default_derive))]

#[macro_use]
extern crate log;
extern crate env_logger;
extern crate optional;
extern crate ref_slice;
extern crate bit_matrix;
extern crate bit_vec;
extern crate cfg;
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate num;
extern crate num_derive;

pub mod debug;
pub mod events;
pub mod forest;
pub mod grammar;
pub mod item;
pub mod memory_use;
pub mod recognizer;
pub mod binary_heap;