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
GitHub - Keats/tera: A template engine for Rust based on Jinja2/Django

A template engine for Rust based on Jinja2/Django. Contribute to Keats/tera development by creating an account on GitHub.

GitHub

@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).

ructe

Rust Compiled Templates, efficient type-safe web page templates

Lib.rs