peer-group-grading/crates/backend/Cargo.toml
Mika 7cd261c061
Some checks failed
ci/woodpecker/push/check_fmt Pipeline failed
implemente custom error and endpoint to create a project
2025-04-02 12:36:42 +02:00

31 lines
575 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"
serde = { version = "1", features = ["derive"] }
sea-orm = { version = "1.1", features = [
"sqlx-postgres",
"runtime-tokio-rustls",
"macros",
] }
dotenvy = "0.15"
[features]
serve = []