From 63ff3d96d329db74f1703a6dc775cefcaa617823 Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Wed, 8 Jun 2022 00:03:08 -0400 Subject: Move to Askama templates. The author of maud seems to be slow on updating to newer actix releases, and the syntax, while clever, is ultimately less tool-friendly than "HTML with some weird characters" is. I do still like the idea, but I also want to use Actix 4. --- src/bin/web.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/bin') diff --git a/src/bin/web.rs b/src/bin/web.rs index 6913263..b04a14b 100644 --- a/src/bin/web.rs +++ b/src/bin/web.rs @@ -17,7 +17,7 @@ pub enum Error { type Result = std::result::Result<(), Error>; -#[actix_rt::main] +#[actix_web::main] async fn main() -> Result { let port = twelve::port(3000)?; -- cgit v1.2.3