Files
poo-stack.rs/backend/Cargo.toml
2022-12-31 23:17:01 +02:00

20 lines
584 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]
dotenv = "0.15"
common = { path = "../common"}
yew = { version = "0.20.0", features = ["csr"] }
anyhow = "1.0"
futures = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sqlx = {version = "0.6", features = ["postgres", "json", "runtime-actix-rustls", "chrono", "decimal", "uuid", "offline"] }
async-trait = "0.1.60"
actix-web = "4"
chrono = {version = "0.4.23", features = ["serde"]}