Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .cursor/rules/rust-development.mdc
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,18 @@ alwaysApply: false

## Development Commands

Always run `cargo fmt --all`, prior to committing any Rust code, to ensure consistent formatting and to avoid CI failures.

Some other commands you may find useful:

```bash
# Essential Rust workflow - run against the whole workspace
cargo build --workspace
cargo test --workspace
cargo clippy --workspace
cargo fmt

# Local testing
./bin/sentry-cli --help
cargo run -- --help
```

## Error Handling Patterns
Expand Down