cargo

Installation
SKILL.md

Cargo

Cargo is Rust's build system and package manager. It is famous for its reliability and developer experience.

When to Use

  • Rust Projects: Mandatory.
  • Formatting/Linting: cargo fmt, cargo clippy.
  • Testing: cargo test is built-in.

Quick Start

cargo new my-project
cd my-project
cargo run
Installs
3
GitHub Stars
10
First Seen
Feb 10, 2026
cargo — g1joshi/agent-skills