Files
poo-stack.rs/backend/Cargo.toml

20 lines
552 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"
chrono = "0.2.25"
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 = {features = ["postgres", "json", "runtime-actix-rustls", "chrono", "decimal", "uuid"] }
async-trait = {}
tokio = { version = "1.20.0", features = ["macros"]}