add axum-htmx to deps because yolo
This commit is contained in:
parent
826c21b4df
commit
bc9f5c29cb
2 changed files with 13 additions and 2 deletions
14
Cargo.lock
generated
14
Cargo.lock
generated
|
@ -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",
|
||||
|
|
|
@ -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"] }
|
||||
|
|
Loading…
Reference in a new issue