From 491ce5e19eb568f56076794ec0adfff64b4ccf1e Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Mon, 17 Oct 2022 15:35:11 +0100 Subject: [PATCH] Add link to Actix Web integration example (#130) --- examples/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/examples/README.md b/examples/README.md index 1c227620..df707f95 100644 --- a/examples/README.md +++ b/examples/README.md @@ -23,3 +23,7 @@ the `cargo run` command. Alternatively you can do `cargo run -p example-name`. * [render-macro](render-macro): minimal Hello World example using the `render!` macro. * [render-template](render-template): CLI app that renders templates from string. * [source](source): Demonstrates how to load templates from disk with the `source` feature. + +## Third-party Examples + +* [Actix Web Integration](https://github.com/actix/examples/blob/master/templating/minijinja)