ninja_build_syntax/
lib.rs

1mod error;
2mod parsers;
3mod statements;
4
5pub use {
6    error::Error,
7    parsers::{
8        Binding, Build, Comment, Default, Identifier, Include, Pool, Rule, Statement, Value,
9        ValuePiece,
10    },
11    statements::parse,
12};
13
14type IResult<'a, T> = nom::IResult<&'a [u8], T>;