16 lines
417 B
TOML
16 lines
417 B
TOML
[package]
|
|
name = "witl-api"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
actix-web = "4"
|
|
chrono = { version = "0.4.31", features = ["serde"] }
|
|
dotenv = "0.15.0"
|
|
env_logger = "0.10.1"
|
|
serde = "1.0.193"
|
|
serde_json = "1.0.108"
|
|
sqlx = {version = "0.7.3", features=["postgres", "chrono", "uuid", "runtime-async-std"]}
|