feat: add configurability

This commit is contained in:
Sandro Eiler 2024-01-01 14:34:42 +01:00
parent 89ea0995bb
commit 8257255dc2
10 changed files with 1406 additions and 26 deletions

View file

@ -23,11 +23,24 @@ serde_json = "1"
axum = { version = "0.7" }
# tower-http = { version = "0.5", features = ["fs"] }
# tower-cookies = "0.10"
# # Others
# Others
config = "0.13"
# lazy-regex = "3"
# async-trait = "0.1"
# strum_macros = "0.25"
# uuid = { version = "1", features = ["v4", "fast-rng"] }
[dependencies.sqlx]
version = "0.7"
default-features = false
features = [
"runtime-tokio-rustls",
"macros",
"postgres",
"uuid",
"chrono",
"migrate"
]
[dev-dependencies]
reqwest = "0.11"