15 lines
466 B
TOML
15 lines
466 B
TOML
[package]
|
|
name = "ddstats"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
chrono = { version = "0.4.24", features = ["serde"] }
|
|
dotenv = "0.15.0"
|
|
rocket = { version = "0.5.0-rc.2", features = ["json"] }
|
|
tokio = { version = "1.27.0", features = ["full"] }
|
|
tokio-postgres = { version = "0.7.8", features = ["with-chrono-0_4"] }
|
|
tokio-test = "0.4.2"
|
|
serde = "1.0.154" |