diff options
author | Adam T. Carpenter <atc@53hor.net> | 2025-05-27 19:00:15 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2025-05-27 19:00:15 -0400 |
commit | a88257e90beaaebbf7ebaca57cc871fceb93fda9 (patch) | |
tree | 6259d02103a7264b10a5e7c87c568071eb9c1d9e /Cargo.toml | |
parent | 130bceda109ce9c000779373ea1fc8b27079c8e5 (diff) | |
download | carpentertutoring-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.toml | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -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", |