19 lines
393 B
TOML
19 lines
393 B
TOML
|
[package]
|
||
|
name = "backend"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
[dependencies]
|
||
|
sea-orm = { version = "1.0.1", features = [
|
||
|
"sqlx-postgres",
|
||
|
"runtime-tokio-rustls",
|
||
|
"macros",
|
||
|
] }
|
||
|
tokio = { version = "1", features = ["full"] }
|
||
|
dotenvy = "*"
|
||
|
entity = { path = "../entity" }
|
||
|
actix-web = "4"
|
||
|
actix-cors = "0.7"
|
||
|
serde = { version = "*", features = ["derive"] }
|
||
|
argon2 = { version = "*" }
|