peer-group-grading/crates/backend/Cargo.toml
Mika Bomm 8e460ec6dd
Some checks failed
ci/woodpecker/push/check_fmt Pipeline failed
feat: add validation to project creation and update endpoints
2025-04-03 10:40:59 +02:00

33 lines
645 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"
argon2 = "0.5.3"
thiserror = "2"
env_logger = "0.11"
log = "0.4"
serde = { version = "1", features = ["derive"] }
validator = { version = "0.20.0", features = ["derive"] }
sea-orm = { version = "1.1", features = [
"sqlx-postgres",
"runtime-tokio-rustls",
"macros",
] }
dotenvy = "0.15"
[features]
serve = []