backend: add necessary dependencies

This commit is contained in:
Sphereso 2024-07-05 15:15:36 +02:00
parent c1b1fcb9a5
commit 2151957760
2 changed files with 2320 additions and 19 deletions

2328
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -4,5 +4,16 @@ version = "0.1.0"
edition = "2021"
[dependencies]
argon2 = { version = "0.5" }
actix-web = "4"
actix-cors = "0.7"
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 = "*"