duster/src/parser/mod.rs
Tom Alexander 0302ed216f
Add my implementation of a take_until_parser_matches parser.
The author of nom is too busy to review the PR, and cargo does not allow for git dependencies, so I am going to copy my implementation into this code base so I can use upstream nom so I can push to cargo. While this code has been submitted upstream to nom which is under the MIT license, I am the author of this code so I believe I have the full right to also release it in this project under the 0BSD license.
2021-02-06 16:23:54 -05:00

18 lines
426 B
Rust

//! This module contains a rust implementation of LinkedIn Dust
mod parser;
mod take_until_parser_matches;
pub use parser::template;
pub use parser::Body;
pub use parser::DustTag;
pub use parser::Filter;
pub use parser::KVPair;
pub use parser::OwnedLiteral;
pub use parser::PartialNameElement;
pub use parser::Path;
pub use parser::RValue;
pub use parser::Special;
pub use parser::Template;
pub use parser::TemplateElement;