20 lines
564 B
TOML
20 lines
564 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 = {features = ["serde"]}
|