Parser implementation of recipe-lang
sh cargo add recipe-parser
```rs use recipe_parser::{parse, Token};
fn main() { let reciperaw = "Boil {potatoes}(3)"; let recipe: Vec = parse(reciperaw); println!("{recipe:?}"); } ```