23 lines
547 B
TOML
23 lines
547 B
TOML
[package]
|
|
name = "hottub"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.88"
|
|
awc = "3.7.0"
|
|
diesel = { version = "2.2.10", features = ["sqlite", "r2d2"] }
|
|
dotenvy = "0.15.7"
|
|
env_logger = "0.11.8"
|
|
error-chain = "0.12.4"
|
|
futures = "0.3.31"
|
|
htmlentity = "1.3.2"
|
|
ntex = { version = "2.0", features = ["tokio"] }
|
|
ntex-files = "2.0.0"
|
|
once_cell = "1.21.3"
|
|
reqwest = { version = "0.12.18", features = ["blocking", "json", "rustls-tls"] }
|
|
serde = "1.0.219"
|
|
serde_json = "1.0.140"
|
|
tokio = { version = "1.45.1", features = ["full"] }
|
|
|