rkt_dyn_templates

Crates.iorkt_dyn_templates
lib.rsrkt_dyn_templates
version0.3.2
created_at2026-01-24 18:30:12.343001+00
updated_at2026-01-24 18:30:12.343001+00
descriptionDynamic templating engine integration for rkt.
homepagehttps://rkt.rs
repositoryhttps://github.com/rustfoo/rkt/tree/main/contrib/dyn_templates
max_upload_size
id2067183
size144,341
Martyn P (martynp)

documentation

README

dyn_templates ci.svg crates.io docs.svg

This crate adds support for dynamic template rendering to Rocket. It automatically discovers templates, provides a Responder to render templates, and automatically reloads templates when compiled in debug mode. It supports Handlebars, Tera and MiniJinja.

Usage

  1. Enable the rocket_dyn_templates feature corresponding to your templating engine(s) of choice:

    [dependencies.rocket_dyn_templates]
    package = "rocket_dyn_templates-community"
    version = "0.3.2"
    features = ["handlebars", "tera", "minijinja"]
    
  2. Write your template files in Handlebars (.hbs) and/or Tera (.tera) in the configurable template_dir directory (default: {rocket_root}/templates).

  3. Attach Template::fairing() and return a Template using Template::render(), supplying the name of the template file minus the last two extensions:

    use rocket_dyn_templates::{Template, context};
    
    #[get("/")]
    fn index() -> Template {
        Template::render("template-name", context! { field: "value" })
    }
    
    #[launch]
    fn rocket() -> _ {
        rocket::build().attach(Template::fairing())
    }
    

See the crate docs for full details.

Commit count: 2475

cargo fmt