Initial Commit

This commit is contained in:
2025-02-01 16:28:24 +01:00
commit d16391fab0
19 changed files with 2201 additions and 0 deletions

20
Cargo.toml Normal file
View File

@@ -0,0 +1,20 @@
[package]
name = "htmxtailwindtest"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1", features = ["full"] }
axum = "0.7.9"
serde = { version = "1.0.217", features = ["derive"] }
tower = "0.5.2"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
tower-http = { version = "0.6.2", features = ["cors", "trace", "fs"] }
diesel = { version = "2.2.7", features = ["sqlite", "returning_clauses_for_sqlite_3_35"] }
dotenvy = "0.15"
anyhow = "1.0.95"
deadpool-diesel = { version = "0.6.1", features = ["sqlite", "tracing"]}
clap = { version = "4.5.21", features = ["derive", "env"] }
askama = { version = "0.12.1", features = ["with-axum"] }
askama_axum = "0.4"