cargo

SKILL.md

Overview

This skill ensures dependencies are always added to Rust projects using cargo add CLI commands rather than manually editing Cargo.toml. This guarantees the latest compatible versions are used and maintains proper dependency resolution.

Usage

Adding Dependencies

NEVER manually edit Cargo.toml to add dependencies. Always use:

cargo add crate_name

With features:

cargo add crate_name --features "feature1,feature2"
Installs
2
First Seen
Mar 27, 2026
cargo from smithery.ai