Cargo

Rust package manager (36 subcommands). Use when this capability is needed.

tomevault-io Updated

File contents

cargo

Rust package manager (36 subcommands).

Build

cargo build --release
cargo check
cargo test
cargo run
cargo bench

Package

cargo new myproject
cargo init
cargo add serde
cargo remove tokio

Dependencies

cargo tree
cargo update
cargo fetch

Publish

cargo publish
cargo search regex
cargo install ripgrep

Workspace

# Cargo.toml
[workspace]
members = ["crates/*"]

[dependencies]
serde = { version = "1.0", features = ["derive"] }

Fix

cargo fix --edition
cargo clippy --fix
cargo fmt

Converted and distributed by TomeVault — claim your Tome and manage your conversions.

tomevault-io/skills-registry/tree/main/plurigrid--asi--cargo commit a2cca338d0

Frequently asked questions

npx skillmds@latest add tomevault-io/cargo