18 lines
391 B
TOML
18 lines
391 B
TOML
[package]
|
|
name = "backend"
|
|
version = { workspace = true }
|
|
edition = { workspace = true }
|
|
|
|
[dependencies]
|
|
entity = { workspace = true }
|
|
migration = { workspace = true }
|
|
|
|
actix-web = "4"
|
|
actix-session = { version = "0.10", features = ["redis-session"] }
|
|
actix-cors = "0.7"
|
|
actix-files = "0.6"
|
|
tracing-actix-web = "0.7.16"
|
|
|
|
env_logger = "0.11"
|
|
|
|
serde = { version = "1", features = ["derive"] }
|