nbnf 0.0.2

A parser generator based on nom, with syntax inspired by EBNF and regex
Documentation
1
2
3
4
5
6
7
8
9
#![doc = include_str!("../README.md")]
//! # Example JSON parser
//! ```
#![doc = include_str!("../examples/json.rs")]
//! ```

pub use nbnf_language::*;
pub use nbnf_macro::nbnf;
pub extern crate nom;