![Travis Build Status] ![Appveyor Build Status] ![Latest Version]
[gtmpl-rust] provides the [Golang text/template] engine for Rust. This enables seamless integration of Rust application into the world of devops tools around [kubernetes], [docker] and whatnot.
Add the following dependency to your Cargo manifest…
toml
[dependencies]
gtmpl = "0.4.0"
and look at the docs: * gtmpl at crates.io * gtmpl documentation * golang documentation
It's not perfect, yet. Help and feedback is more than welcome.
Basic template: ```rust extern crate gtmpl; use gtmpl;
fn main() { let output = gtmpl::template("Finally! Some {{ . }} for Rust", "gtmpl"); assert_eq!(&output.unwrap(), "Finally! Some gtmpl for Rust"); } ```
Adding custom functions: ```rust
extern crate gtmpl; extern crate gtmplvalue; use gtmplvalue::Function; use gtmpl::{template, Value};
fn main() {
gtmplfn!(
fn add(a: u64, b: u64) -> Result
Passing a struct as context: ```rust
extern crate gtmpl;
extern crate gtmplderive; extern crate gtmplvalue;
struct Foo { bar: u8 }
fn main() { let foo = Foo { bar: 42 }; let output = gtmpl::template("The answer is: {{ .bar }}", foo); assert_eq!(&output.unwrap(), "The answer is: 42"); } ```
This is work in progress. Currently the following features are not supported:
html
, js
printf
is not yet fully stable, but should support all sane inputWe use [gtmplvalue]'s Value as internal data type. [gtmplderive] provides a
handy derive
macro to generate the From
implementation for Value
.
See:
Why? Dear god, why? I can already imagine the question coming up why anyone would ever do this. I wasn't a big fan of Golang templates when i first had to write some custom formatting strings for docker. Learning a new template language usually isn't something one is looking forward to. Most people avoid it completely. However, it's really useful for automation if you're looking for something more lightweight than a full blown DSL.
The main motivation for this is to make it easier to write devops tools in Rust that feel native. [docker] and [helm] ([kubernetes]) use golang templates and it feels more native if tooling around them uses the same.