ApfelNetzwerk/crates/backend/Cargo.toml

21 lines
405 B
TOML

[package]
name = "backend"
version = "0.1.0"
edition = "2021"
[dependencies]
argon2 = { version = "0.5" }
actix-web = "4"
actix-cors = "0.7"
uuid = { version = "1" }
serde = { version = "*", features = ["derive"] }
sea-orm = { version = "1", features = [
"sqlx-postgres",
"runtime-tokio-rustls",
"with-uuid",
] }
dotenvy = "*"
jsonwebtoken = "*"
futures = "*"
entity = { path = "../entity" }