Looking into a templating engine for #Rust. Preferably #jinja2 like. https://github.com/Keats/tera is an option, but does anyone have any suggestions? #rustlang
@daubers
If I might self-suggest ... https://lib.rs/crates/ructe might be worth a look.
To be honest, it doesn't really look like jinja, the major design difference is that ructe converts your templates to code at compile-time. That makes it efficient and it avoids runtime template errors (but makes it impossible to change tempates at runtime).