summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2025-05-27 19:00:15 -0400
committerAdam T. Carpenter <atc@53hor.net>2025-05-27 19:00:15 -0400
commita88257e90beaaebbf7ebaca57cc871fceb93fda9 (patch)
tree6259d02103a7264b10a5e7c87c568071eb9c1d9e /Cargo.toml
parent130bceda109ce9c000779373ea1fc8b27079c8e5 (diff)
downloadcarpentertutoring-a88257e90beaaebbf7ebaca57cc871fceb93fda9.tar.xz
carpentertutoring-a88257e90beaaebbf7ebaca57cc871fceb93fda9.zip
chore: bump axum and askama
Fix breaking changes in markdown and templating
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml9
1 files changed, 3 insertions, 6 deletions
diff --git a/Cargo.toml b/Cargo.toml
index d10edd3..30bd9f9 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,13 +6,10 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-askama = { version = "0.12", features = [
- "markdown",
- "with-axum",
-], default-features = false }
-askama_axum = "0.4"
-axum = "0.7"
+askama = { version = "0.14" }
+axum = "0.8"
chrono = { version = "0.4", default-features = false, features = ["now"] }
+comrak = { version = "0.39.0", default-features = false }
tokio = { version = "1.45", default-features = false, features = [
"rt-multi-thread",
"macros",