diff options
author | Griffin Smith <root@gws.fyi> | 2019-07-19T15·54-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2019-07-19T15·54-0400 |
commit | e2d13bd76b9af9cc2734cdcb9df605afa95cca31 (patch) | |
tree | 8a720b216dd6481fcda491ffcb082d989e2d15c6 /src/main.rs | |
parent | bc93999cf37a65d48f25e30795c85a0aef97efac (diff) |
Add templates for messages
Implement a template syntax with a nom parser, and a formatter to render templates to strings.
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 636663e05045..8bad5c057fd3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -21,6 +21,8 @@ extern crate downcast_rs; extern crate backtrace; #[macro_use] extern crate include_dir; +#[macro_use] +extern crate nom; #[macro_use] mod util; |