Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 561 Bytes

File metadata and controls

28 lines (21 loc) · 561 Bytes

AGENTS.md

Scope

This file applies to rocketmq-example/.

Rules

  • This is a standalone Cargo project.
  • Do not rely on root workspace validation for this directory.

Mandatory validation

Run from rocketmq-example/ after every Rust code change:

cargo fmt --all
cargo clippy --all-targets -- -D warnings

Test policy

  • Run only the affected tests or examples by default.
  • Do not run all examples by default unless the change is broad.

Examples:

cargo build --example example_name
cargo test
cargo test some_test_name