maciejhirsz/ramhorns


Fast Mustache template engine implementation in pure Rust.

https://crates.io/crates/ramhorns

License: MPL-2.0

Language: Rust

Keywords: handlebars, mustache, mustache-templates, rust, templates, templating-engine


Ramhorns logo

Ramhorns

Tests badge Crates.io version badge Docs Crates.io license badge

Fast Mustache template engine implementation in pure Rust.

Ramhorns loads and processes templates at runtime. It comes with a derive macro which allows for templates to be rendered from native Rust data structures without doing temporary allocations, intermediate HashMaps or what have you.

With a touch of magic 🎩, the power of friendship 🥂, and a sparkle of FNV hashing ✨, render times easily compete with static template engines like Askama.

Cargo.toml

[dependencies]
ramhorns = "0.5"

Example

use ramhorns::{Template, Content};

#[derive(Content)]
struct Post<'a> {
    title: &'a str,
    teaser: &'a str,
}

#[derive(Content)]
struct Blog<'a> {
    title: String,        // Strings are cool
    posts: Vec<Post<'a>>, // &'a [Post<'a>] would work too
}

// Standard Mustache action here
let source = "<h1>{{title}}</h1>\
              {{#posts}}<article><h2>{{title}}</h2><p>{{teaser}}</p></article>{{/posts}}\
              {{^posts}}<p>No posts yet :(</p>{{/posts}}";

let tpl = Template::new(source).unwrap();

let rendered = tpl.render(&Blog {
    title: "My Awesome Blog!".to_string(),
    posts: vec![
        Post {
            title: "How I tried Ramhorns and found love 💖",
            teaser: "This can happen to you too",
        },
        Post {
            title: "Rust is kinda awesome",
            teaser: "Yes, even the borrow checker! 🦀",
        },
    ]
});

assert_eq!(rendered, "<h1>My Awesome Blog!</h1>\
                      <article>\
                          <h2>How I tried Ramhorns and found love 💖</h2>\
                          <p>This can happen to you too</p>\
                      </article>\
                      <article>\
                          <h2>Rust is kinda awesome</h2>\
                          <p>Yes, even the borrow checker! 🦀</p>\
                      </article>");

Features

  • Rendering common types, such as &str, String, bools, and numbers into {{variables}}.
  • Unescaped printing with {{{tripple-brace}}} or {{&ampersant}}.
  • Rendering sections {{#foo}} ... {{/foo}}.
  • Rendering inverse sections {{^foo}} ... {{/foo}}.
  • Rendering partials {{>file.html}}.
  • Zero-copy CommonMark rendering from fields marked with #[md].

Benches

Rendering a tiny template:

test a_simple_ramhorns            ... bench:          82 ns/iter ( /- 4) = 1182 MB/s
test b_simple_askama              ... bench:         178 ns/iter ( /- 8) = 544 MB/s
test c_simple_tera                ... bench:         416 ns/iter ( /- 98) = 233 MB/s
test c_simple_tera_from_serialize ... bench:         616 ns/iter ( /- 33) = 157 MB/s
test d_simple_mustache            ... bench:         613 ns/iter ( /- 34) = 158 MB/s
test e_simple_handlebars          ... bench:         847 ns/iter ( /- 40) = 114 MB/s

Rendering a tiny template with partials:

test pa_partials_ramhorns         ... bench:          85 ns/iter ( /- 7) = 1141 MB/s
test pb_partials_askama           ... bench:         210 ns/iter ( /- 9) = 461 MB/s
test pc_partials_mustache         ... bench:         827 ns/iter ( /- 39) = 117 MB/s
test pd_partials_handlebars       ... bench:         846 ns/iter ( /- 29) = 114 MB/s

Compiling a template from a string:

test xa_parse_ramhorns            ... bench:         190 ns/iter ( /- 10) = 821 MB/s
test xb_parse_mustache            ... bench:       3,229 ns/iter ( /- 159) = 48 MB/s
test xe_parse_handlebars          ... bench:       6,883 ns/iter ( /- 383) = 22 MB/s

Worth noting here is that Askama is processing templates at compile time and generates static rust code for rendering. This is great for performance, but it also means you can't swap out templates without recompiling your Rust binaries. In some cases, like for a static site generator, this is unfortunately a deal breaker.

Parsing the templates on runtime is never going to be free, however Ramhorns has a really fast parser built on top of Logos, that makes even that part of the process snappy.

The Mustache crate is the closest thing to Ramhorns in design and feature set.

License

Ramhorns is free software, and is released under the terms of the Mozilla Public License version 2.0. See LICENSE.

Project Statistics

Sourcerank 11
Repository Size 298 KB
Stars 294
Forks 29
Watchers 7
Open issues 13
Dependencies 12
Contributors 7
Tags 26
Created
Last updated
Last pushed

Top Contributors See all

Maciej Hirsz grego Jonathan Frere Erik Funder Carstensen Tiago creativcoder Nova

Packages Referencing this Repo

ramhorns-derive
Experimental Mustache-like templating engine.
Latest release 1.0.1 - Updated - 294 stars
ramhorns
Experimental Mustache-like templating engine.
Latest release 1.0.1 - Updated - 294 stars

Recent Tags See all

v1.0.1 October 16, 2024
v1.0.1 October 16, 2024
v1.0.0 March 24, 2024
v0.14.0 June 07, 2022
v0.13.0 December 14, 2021
v0.12.0 July 13, 2021
v0.11.0 June 16, 2021
v0.10.2 October 14, 2020
v0.10.1 October 13, 2020
v0.10.0 October 08, 2020
v0.9.4 June 08, 2020
v0.9.3 May 02, 2020
v0.9.2 April 24, 2020
v0.9.1 April 20, 2020
v0.9.0-fixed March 17, 2020

Something wrong with this page? Make a suggestion

Last synced: 2024-10-16 07:30:11 UTC

Login to resync this repository