/update-rust-deps
Safely update dependencies in your Rust project.
> /plugin marketplace add wasabeef/claude-code-cookbookHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/update-rust-deps
Context preview
What this command does when you run it.
Safely update dependencies in your Rust project.
Command definition
update-rust-deps.mdSafely update Rust dependencies
Safely update dependencies in your Rust project.
Usage
# Check dependency status and request Claude's help
cargo tree
"Please update the dependencies in Cargo.toml to their latest versions"
Basic Examples
# Check current dependencies
cat Cargo.toml
"Analyze this Rust project's dependencies and tell me which crates can be updated"
# Check list of updatable crates
cargo update --dry-run
"Analyze the risk level of updating these crates"
Integration with Claude
# Comprehensive dependency update
cat Cargo.toml
"Analyze Rust dependencies and perform the following:
1. Research the latest version of each crate
2. Check for breaking changes
3. Evaluate risk level (safe, caution, dangerous)
4. Suggest necessary code changes
5. Generate updated Cargo.toml"
# Safe, gradual update
cargo tree
"Update only crates that can be safely updated, avoiding major version upgrades"
# Impact analysis for specific crate update
"Tell me the impact and necessary changes when updating tokio to the latest version"
Detailed Examples
# Detailed analysis including release notes
cat Cargo.toml && cargo tree
"Analyze dependencies and provide the following for each crate in table format:
1. Current β Latest version
2. Risk evaluation (safe, caution, dangerous)
3. Main changes (from CHANGELOG)
4. Trait bound changes
5. Required code fixes"
# Async runtime migration analysis
cat Cargo.toml src/main.rs
"Present all necessary changes for migrating from async-std to tokio or upgrading tokio to a new major version"
Risk Criteria
Safe (π’):
- Patch version upgrade (0.1.2 β 0.1.3)
- Bug fixes only
- Backward compatibility guaranteed
Caution (π‘):
- Minor version upgrade (0.1.0 β 0.2.0)
- New features added
- Deprecation warnings
Dangerous (π΄):
- Major version upgrade (0.x.y β 1.0.0, 1.x.y β 2.0.0)
- Breaking changes
- API removals or modifications
- Trait bound changes
Execution of Update
# Create backups
cp Cargo.toml Cargo.toml.backup
cp Cargo.lock Cargo.lock.backup
# Execute update
cargo update
# Verify after update
cargo check
cargo test
cargo clippy
Notes
Always verify functionality after updates. If issues occur, restore with:
cp Cargo.toml.backup Cargo.toml
cp Cargo.lock.backup Cargo.lock
cargo build
Read more
Safely update Rust dependencies
Safely update dependencies in your Rust project.
Usage
# Check dependency status and request Claude's help cargo tree "Please update the dependencies in Cargo.toml to their latest versions"
Basic Examples
# Check current dependencies cat Cargo.toml "Analyze this Rust project's dependencies and tell me which crates can be updated" # Check list of updatable crates cargo update --dry-run "Analyze the risk level of updating these crates"
Integration with Claude
# Comprehensive dependency update cat Cargo.toml "Analyze Rust dependencies and perform the following: 1. Research the latest version of each crate 2. Check for breaking changes 3. Evaluate risk level (safe, caution, dangerous) 4. Suggest necessary code changes 5. Generate updated Cargo.toml" # Safe, gradual update cargo tree "Update only crates that can be safely updated, avoiding major version upgrades" # Impact analysis for specific crate update "Tell me the impact and necessary changes when updating tokio to the latest version"
Detailed Examples
# Detailed analysis including release notes cat Cargo.toml && cargo tree "Analyze dependencies and provide the following for each crate in table format: 1. Current β Latest version 2. Risk evaluation (safe, caution, dangerous) 3. Main changes (from CHANGELOG) 4. Trait bound changes 5. Required code fixes" # Async runtime migration analysis cat Cargo.toml src/main.rs "Present all necessary changes for migrating from async-std to tokio or upgrading tokio to a new major version"
Risk Criteria
Safe (π’): - Patch version upgrade (0.1.2 β 0.1.3) - Bug fixes only - Backward compatibility guaranteed Caution (π‘): - Minor version upgrade (0.1.0 β 0.2.0) - New features added - Deprecation warnings Dangerous (π΄): - Major version upgrade (0.x.y β 1.0.0, 1.x.y β 2.0.0) - Breaking changes - API removals or modifications - Trait bound changes
Execution of Update
# Create backups cp Cargo.toml Cargo.toml.backup cp Cargo.lock Cargo.lock.backup # Execute update cargo update # Verify after update cargo check cargo test cargo clippy
Notes
Always verify functionality after updates. If issues occur, restore with:
cp Cargo.toml.backup Cargo.toml cp Cargo.lock.backup Cargo.lock cargo build
A collection of commands, roles, and automation scripts for Claude Code. Automate your workflow without unnecessary confirmations, allowing you to focus on what matters.
Repo: wasabeef/claude-code-cookbook
Other commands on claude-code-cookbook.
- /analyze-dependencies
Analyzes your project's dependencies and checks architecture health.
Open command - /analyze-performance
Analyzes application performance from a user experience perspective and quantifies experience improvements from optimizations. Calculates UX scores based on Core Web Vitals and proposes prioritized optimization strategies.
Open command - /check-fact
Verifies if a statement is true by checking your project's code and documentation.
Open command - /check-prompt
A comprehensive collection of best practices for evaluating and improving the quality of prompts for AI Agents. It systematizes knowledge gained from actual prompt improvement processes, covering all important aspects such as ambiguity elimination, information integration,
Open command - /commit-message
Generates commit messages from staged changes (git diff --staged). This command only creates messages and copies them to your clipboardβit doesn't run any git commands.
Open command - /context7
Searches technical documentation using MCP's Context7.
Open command

