1 2 3 4 5 6 7 8
use askama::Template; use askama_minify::template_minify; #[template_minify(path = "index.html", source = "<p></p>", ext = "html")] #[derive(Template)] struct PathAndSource; fn main() {}