feat: send message through htmx

This commit is contained in:
Ahmet Kaan Gümüş 2025-03-10 03:37:20 +03:00
parent b87ca298e9
commit 5969f7b57c
8 changed files with 198 additions and 110 deletions

View file

@ -4,5 +4,7 @@ version = "0.1.0"
edition = "2024"
[dependencies]
askama = "0.12.1"
axum = "0.8.1"
askama = { version = "0.12.1", default-features = false }
axum = { version = "0.8.1" , default-features = false, features = ["http1", "form", "tokio"] }
serde = { version = "1.0.219", default-features = false, features = ["derive"] }
tokio = { version = "1.44.0", default-features = false, features = ["rt-multi-thread"] }