28 lines
809 B
TOML
28 lines
809 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"
|
|
argon2 = "0.5.3"
|
|
rand = "0.8.1"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
daemonize = "0.5.0" |