17 lines
502 B
TOML
17 lines
502 B
TOML
|
[package]
|
||
|
name = "backend"
|
||
|
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", features = ["full"] }
|
||
|
dotenv = "0.15"
|
||
|
actix-web = "4"
|
||
|
tokio-postgres = { version = "0.7.8", features = ["with-chrono-0_4"] }
|
||
|
chrono = { version = "0.4.24", features = ["serde"] }
|
||
|
serde_json = "1.0"
|
||
|
serde = { version = "1.0.159", features = ["derive"] }
|
||
|
async-trait = "0.1.68"
|
||
|
dotenv_codegen = "0.15.0"
|