add axum-htmx to deps because yolo

This commit is contained in:
Joe Ardent 2023-09-21 21:47:39 -07:00
parent 826c21b4df
commit bc9f5c29cb
2 changed files with 13 additions and 2 deletions

14
Cargo.lock generated
View File

@ -318,6 +318,15 @@ dependencies = [
"tower-service", "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]] [[package]]
name = "axum-login" name = "axum-login"
version = "0.6.0" version = "0.6.0"
@ -1300,9 +1309,9 @@ dependencies = [
[[package]] [[package]]
name = "matchit" name = "matchit"
version = "0.7.2" version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed1202b2a6f884ae56f04cff409ab315c5ce26b5e58d7412e484f01fd52f52ef" checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
[[package]] [[package]]
name = "md-5" name = "md-5"
@ -2747,6 +2756,7 @@ dependencies = [
"askama_axum", "askama_axum",
"async-session", "async-session",
"axum", "axum",
"axum-htmx",
"axum-login", "axum-login",
"axum-macros", "axum-macros",
"axum-test", "axum-test",

View File

@ -14,6 +14,7 @@ askama = { version = "0.12", features = ["with-axum"] }
askama_axum = "0.3" askama_axum = "0.3"
async-session = "3" async-session = "3"
axum = { version = "0.6", features = ["macros", "headers"] } 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-login = { git = "https://github.com/nebkor/axum-login", branch = "sqlx-0.7", features = ["sqlite"], default-features = false }
axum-macros = "0.3" axum-macros = "0.3"
chrono = { version = "0.4", default-features = false, features = ["std", "clock"] } chrono = { version = "0.4", default-features = false, features = ["std", "clock"] }