backend: add necessary dependencies
This commit is contained in:
parent
c1b1fcb9a5
commit
2151957760
2 changed files with 2320 additions and 19 deletions
2328
Cargo.lock
generated
2328
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -4,5 +4,16 @@ version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
argon2 = { version = "0.5" }
|
||||||
actix-web = "4"
|
actix-web = "4"
|
||||||
actix-cors = "0.7"
|
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 = "*"
|
||||||
|
|
Loading…
Reference in a new issue