Alisa/crates/backend/Cargo.toml

20 lines
432 B
TOML
Raw Normal View History

2024-07-05 11:16:21 +02:00
[package]
name = "backend"
version = "0.1.0"
edition = "2021"
2024-07-05 11:44:57 +02:00
[dependencies]
2024-07-05 15:15:36 +02:00
argon2 = { version = "0.5" }
2024-07-05 11:44:57 +02:00
actix-web = "4"
actix-cors = "0.7"
2024-07-05 15:15:36 +02:00
entity = { path = "../entity" }
migration = { path = "../migration" }
uuid = { version = "*", features = ["v4"] }
serde = { version = "*", features = ["derive"] }
sea-orm = { version = "0.12", features = [
"sqlx-postgres",
"runtime-tokio-rustls",
"with-uuid",
] }
dotenvy = "*"