ApfelNetzwerk/crates/backend/Cargo.toml

25 lines
488 B
TOML

[package]
name = "backend"
version = "0.1.0"
edition = "2021"
[dependencies]
entity = { path = "../entity" }
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 = "*"
chrono = "*"
eui48 = "*"
tokio = { version = "1", features = ["full"] }
deku = "*"