Files
vote-rllhc/Cargo.toml
2024-09-14 21:57:41 +02:00

26 lines
777 B
TOML

[package]
name = "vote"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread"]}
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-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"
futures = "0.3.30"
chrono = { version = "0.4.38", features = ["alloc"]}
futures-util = "0.3.30"
h2 = "0.4.6"
[target.'cfg(unix)'.dependencies]
daemonize = "0.5.0"