Vote + Results done

This commit is contained in:
2024-09-12 23:36:55 +02:00
parent 20b47856d5
commit 49e2b18e56
17 changed files with 698 additions and 19 deletions

View File

@@ -7,12 +7,17 @@ edition = "2021"
[dependencies]
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread"]}
hyper = { version = "1.4.1", features = ["server", "http1"] }
hyper = { version = "1.4.1", features = ["server", "http1", "http2"] }
hyper-util = { version = "0.1.8", features = ["tokio"]}
sqlx = { version = "0.8.2", features = ["runtime-tokio"] }
sqlx = { version = "0.8.2", features = ["runtime-tokio", "sqlx-sqlite", "sqlite", "sqlx-macros"] }
tokio-io = "0.2.0-alpha.6"
dotenvy = "0.15.7"
bytes = "1.7.1"
http-body-util = "0.1.2"
serde = "1.0.210"
serde_json = "1.0.128"
log = "0.4.22"
log = "0.4.22"
futures = "0.3.30"
chrono = { version = "0.4.38", features = ["alloc"]}
futures-util = "0.3.30"
h2 = "0.4.6"