This file applies to rocketmq-dashboard/rocketmq-dashboard-gpui/.
- This is a standalone Cargo project.
- Do not rely on root workspace validation for this directory.
Run from rocketmq-dashboard/rocketmq-dashboard-gpui/ after every Rust code change:
cargo fmt --all
cargo clippy --all-targets --all-features -- -D warnings- Run only the affected validation by default.
- Prefer targeted tests or
cargo checkfor compile-scope changes. - Run full
cargo testonly when the change has wider impact.
Examples:
cargo check
cargo test some_test_name
cargo test