summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2022-06-08 00:03:08 -0400
committerOwen Jacobson <owen@grimoire.ca>2022-06-08 00:43:44 -0400
commit63ff3d96d329db74f1703a6dc775cefcaa617823 (patch)
tree1218878195a8cd0977612b4c69480e4e0a5f2264 /Cargo.toml
parent9fa89e735859d008673663b740c217d0731e71e1 (diff)
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.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml22
1 files changed, 11 insertions, 11 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 3c2f592..775938a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -12,19 +12,19 @@ project = "ojacobson/things-to-check"
branch = "main"
[dependencies]
-actix-web = "3.3.3"
-pulldown-cmark = "0.7"
-rand = "0.7"
-serde = "1.0"
-serde_urlencoded = "0.6"
-serde_yaml = "0.8"
-thiserror = "1.0"
-url = "2.1"
-maud = { version = "0.23.0", features = ["actix-web"] }
-actix-rt = "1.1.1"
+pulldown-cmark = "0.9.1"
+rand = "0.8.5"
+serde = "1.0.137"
+serde_urlencoded = "0.7.1"
+serde_yaml = "0.8.24"
+thiserror = "1.0.31"
+url = "2.2.2"
+actix-web = "4.0.1"
+askama = { version = "0.11.1", features = ["with-actix-web"] }
+askama_actix = "0.13.0"
[dev-dependencies]
-lazy_static = "~1.4"
+lazy_static = "1.4.0"
proptest = "1.0.0"
proptest-derive = "0.3.0"