Change repo to generate both a library and a binary.

This repo will primary be a library, but for compliance testing it may make sense to have a binary operating in the same fashion as the node dustjs shim so I've set up this repo to generate both a library and a binary.
This commit is contained in:
Tom Alexander
2020-04-05 19:12:48 -04:00
parent 0d659afa2f
commit fb17911c44
4 changed files with 17 additions and 5 deletions

9
src/bin.rs Normal file
View File

@@ -0,0 +1,9 @@
extern crate nom;
use parser::template;
mod parser;
fn main() {
let parsed_template = template("{#foo.bar}hello {name}{/foo.bar}!");
println!("{:?}", parsed_template);
}

View File

@@ -1,5 +1,3 @@
extern crate nom;
mod parser;
fn main() {}