6 releases

0.2.0 May 23, 2024
0.1.0 Nov 17, 2023
0.1.0-rc.3 Mar 24, 2023
0.1.0-rc.2 May 9, 2022
0.1.0-rc.1 Jun 9, 2021

#539 in Template engine

Download history 2958/week @ 2025-10-18 3457/week @ 2025-10-25 3408/week @ 2025-11-01 2606/week @ 2025-11-08 2849/week @ 2025-11-15 3020/week @ 2025-11-22 2802/week @ 2025-11-29 3240/week @ 2025-12-06 2805/week @ 2025-12-13 2397/week @ 2025-12-20 2434/week @ 2025-12-27 3348/week @ 2026-01-03 2444/week @ 2026-01-10 4718/week @ 2026-01-17 9953/week @ 2026-01-24 12270/week @ 2026-01-31

29,967 downloads per month
Used in 27 crates (24 directly)

MIT/Apache

1MB
14K SLoC

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. At present, it supports Handlebars and Tera.

Usage

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

    [dependencies.rocket_dyn_templates]
    version = "0.2.0"
    features = ["handlebars", "tera"]
    
  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.

Dependencies

~20–57MB
~839K SLoC