summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2022-06-08 01:00:42 -0400
committerGitHub <noreply@github.com>2022-06-08 01:00:42 -0400
commit06664ab21b100e65eb4357e6bd24656f8f9d194a (patch)
tree052cd8208f6d73500584162fe1cea1e8c96ed6a5 /Cargo.toml
parent430f3f80627679d5a9fec401cfc6ff55871b9835 (diff)
parent8d4bd121e9fe9183eac5323f505ac5f0b8848efe (diff)
Merge pull request #31 from ojacobson/actix-4-and-askama
Actix 4 and askama (as a way of fixing vulns detected by dependabot).
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml33
1 files changed, 16 insertions, 17 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 7b96dd3..775938a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,28 +5,27 @@ repository = "https://github.com/ojacobson/things-to-check/"
publish = false
authors = ["Owen Jacobson <owen@grimoire.ca>"]
homepage = "https://things-to-check.herokuapp.com/"
-edition = "2018"
+edition = "2021"
[badges.travis-ci]
project = "ojacobson/things-to-check"
branch = "main"
[dependencies]
-actix-rt = "~1.0"
-actix-web = "~2.0"
-pulldown-cmark = "~0.7"
-rand = "~0.7"
-serde = "~1.0"
-serde_urlencoded = "~0.6"
-serde_yaml = "~0.8"
-thiserror = "~1.0"
-url = "~2.1"
-
-[dependencies.maud]
-version = "~0.22"
-features = ["actix-web"]
+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"
-proptest = "~0.10"
-proptest-derive = "~0.2"
+lazy_static = "1.4.0"
+proptest = "1.0.0"
+proptest-derive = "0.3.0"
+
+[features]