47 releases

0.17.0 Jul 22, 2023
0.16.1 Jan 28, 2023
0.15.0 Sep 18, 2022
0.14.0 Feb 6, 2022
0.1.2 Nov 20, 2016

#43 in Template engine

Download history 167/week @ 2023-12-05 224/week @ 2023-12-12 269/week @ 2023-12-19 203/week @ 2023-12-26 262/week @ 2024-01-02 254/week @ 2024-01-09 192/week @ 2024-01-16 167/week @ 2024-01-23 362/week @ 2024-01-30 267/week @ 2024-02-06 179/week @ 2024-02-13 503/week @ 2024-02-20 468/week @ 2024-02-27 475/week @ 2024-03-05 324/week @ 2024-03-12 283/week @ 2024-03-19

1,728 downloads per month
Used in 7 crates

MIT/Apache

105KB
2K SLoC

Rust Compiled Templates — ructe

This is my attempt at writing a HTML template system for Rust. Some inspiration comes from the scala template system used in play 2, as well as plain old jsp.

Crate docs CI

Design criteria

  • As many errors as possible should be caught at compile-time.
  • A compiled binary should include all the template code it needs, no need to read template files at runtime.
  • Compilation may take time, running should be fast.
  • Writing templates should be almost as easy as writing html.
  • The template language should be as expressive as possible.
  • It should be possible to write templates for any text-like format, not only html.
  • Any value that implements the Display trait should be outputable.
  • By default, all values should be html-escaped. There should be an easy but explicit way to output preformatted html.

Current status

Ructes is in a rather early stage, but does work; templates can be transpiled to rust functions, which are then compiled and can be called from rust code.

Template format

A template consists of three basic parts: First a preamble of use statements, each prepended by an @ sign. Secondly a declaration of the parameters the template takes. And third, the template body.

The full syntax is described in the documentation. Some examples can be seen in examples/simple/templates. A template may look something like this:

@use any::rust::Type;
@use super::statics::style_css;

@(name: &str, items: &[Type])

<html>
   <head>
     <title>@name</title>
     <link rel="stylesheet" href="/static/@style_css.name" type="text/css"/>
   </head>
   <body>
     <h1>@name</h1>
     <dl>
     @for item in items {
       <dt>@item.title()</dt>
       <dd>@item.description()</dd>
     }
     </dl>
   <body>
</html>

How to use ructe

Ructe compiles your templates to rust code that should be compiled with your other rust code, so it needs to be called before compiling, as described in the documentation. There are also examples, both for ructe itself and its futures and for using it with the web frameworks actix-web, gotham, iron, nickel, tide, and warp. There is also a separate example of using ructe with warp and diesel.

Dependencies

~1.5–2MB
~39K SLoC