From bc9f5c29cb6a826b71202b5d126856279b543c98 Mon Sep 17 00:00:00 2001 From: Joe Ardent Date: Thu, 21 Sep 2023 21:47:39 -0700 Subject: [PATCH] add axum-htmx to deps because yolo --- Cargo.lock | 14 ++++++++++++-- Cargo.toml | 1 + 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 273bac7..75bbbe6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -318,6 +318,15 @@ dependencies = [ "tower-service", ] +[[package]] +name = "axum-htmx" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "588a530db14829c473ebf0d5eac875304ead0c193689b9ce0ca335dab66c3535" +dependencies = [ + "axum", +] + [[package]] name = "axum-login" version = "0.6.0" @@ -1300,9 +1309,9 @@ dependencies = [ [[package]] name = "matchit" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed1202b2a6f884ae56f04cff409ab315c5ce26b5e58d7412e484f01fd52f52ef" +checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" [[package]] name = "md-5" @@ -2747,6 +2756,7 @@ dependencies = [ "askama_axum", "async-session", "axum", + "axum-htmx", "axum-login", "axum-macros", "axum-test", diff --git a/Cargo.toml b/Cargo.toml index 7c78337..651c008 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,6 +14,7 @@ askama = { version = "0.12", features = ["with-axum"] } askama_axum = "0.3" async-session = "3" axum = { version = "0.6", features = ["macros", "headers"] } +axum-htmx = "0.3" axum-login = { git = "https://github.com/nebkor/axum-login", branch = "sqlx-0.7", features = ["sqlite"], default-features = false } axum-macros = "0.3" chrono = { version = "0.4", default-features = false, features = ["std", "clock"] }