Files
YANPM/Cargo.toml
GW_MC 829c4ef3e3 Add CLI application with database migration and entity generation commands
- Introduced a new CLI application in the `apps/cli` directory.
- Implemented commands for database migration and entity generation.
- Updated `Cargo.toml` files to include necessary dependencies.
- Enhanced the `justfile` to facilitate CLI command execution.
- Modified workspace configuration to include the new CLI application.
2025-11-13 21:26:31 +08:00

14 lines
201 B
TOML

[workspace]
members = [
"apps/container",
"apps/cli",
"public/shared",
"public/database",
"public/migration"
]
resolver = "3"
[workspace.lints.clippy]
module_inception = "allow"