# Rust Dev

> Commands and procedures for compiling, testing, checking, formatting, and building the Rust project. Use when this capability is needed.

- Skill: `tomevault-io/rust-dev-3` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/rust-dev-3`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/rust-dev-3/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/rust-dev-3

---


# Rust Development Skill

This skill assists in running common Cargo commands to maintain the quality, correctness, and formatting of the Rust PVM project.

## Commands

### Building
To compile the application in debug mode:
```powershell
cargo build
```

To compile the application in release mode (production ready binary):
```powershell
cargo build --release
```

### Running Tests
To run all tests (unit and integration tests):
```powershell
cargo test
```

To run a specific test:
```powershell
cargo test <test_name>
```

### Code Formatting
To format the code according to the Rust standards:
```powershell
cargo fmt
```

### Code Linting
To check code using clippy:
```powershell
cargo clippy
```

---
> Source: [sagarkarn/PVM](https://github.com/sagarkarn/PVM) — distributed by [TomeVault](https://tomevault.io).
<!-- tomevault:4.0:skill_md:2026-06-16 -->

