peer-group-grading/Cargo.toml
Sphereso 1cba641913
Some checks failed
ci/woodpecker/push/check_fmt Pipeline failed
explicit workspace members
2025-04-01 14:54:54 +02:00

23 lines
463 B
TOML

[workspace]
members = [
"crates/backend",
"crates/entity",
"crates/migration",
"crates/xtask",
]
resolver = "3"
[workspace.package]
name = "peer-group-grading"
version = "0.1.0"
edition = "2024"
[workspace.dependencies]
entity = { path = "crates/entity" }
migration = { path = "crates/migration" }
serde = { version = "*", features = ["derive"] }
sea-orm = { version = "1.1.0", features = [
"runtime-tokio-rustls",
"sqlx-postgres",
] }