Rust package manager (36 subcommands).
Scanned 9/6/2026
Install to Claude Code
npx -y skills add plurigrid/asi --skill cargo --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Cargo?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/plurigrid-cargo-asi)More formats (shields.io, HTML) on the badges page.
---
name: cargo
description: Rust package manager (36 subcommands).
metadata:
trit: 0
---
# cargo
Rust package manager (36 subcommands).
## Build
```bash
cargo build --release
cargo check
cargo test
cargo run
cargo bench
```
## Package
```bash
cargo new myproject
cargo init
cargo add serde
cargo remove tokio
```
## Dependencies
```bash
cargo tree
cargo update
cargo fetch
```
## Publish
```bash
cargo publish
cargo search regex
cargo install ripgrep
```
## Workspace
```toml
# Cargo.toml
[workspace]
members = ["crates/*"]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
```
## Fix
```bash
cargo fix --edition
cargo clippy --fix
cargo fmt
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!