在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用cargo
星标3
分支0
更新时间2026年2月17日 15:36
Rust development: build, test, clippy, publish
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Rust development: build, test, clippy, publish
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Google Calendar — list, create, and manage events via gcal CLI
Manage HubSpot CRM — contacts, companies, deals, tickets
Manage Shopify store — products, orders, customers, inventory
Configure audio transcription and image/video understanding for channels
AWS CLI for S3, EC2, Lambda, CloudWatch, RDS, and ECS
Google Calendar — list, create, and manage events via gcal CLI
| name | cargo |
| description | Rust development: build, test, clippy, publish |
Use the bash tool for Rust development with Cargo.
Check if installed:
command -v cargo && cargo --version
Install (rustup provides cargo):
# macOS
brew install rustup-init && rustup-init
# Official installer (cross-platform)
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
source $HOME/.cargo/env
cargo build
cargo build --release
cargo run
cargo run --release
cargo test
cargo test -- --nocapture
cargo test test_name
cargo test --doc
cargo bench
cargo clippy -- -W clippy::pedantic
cargo fmt
cargo fmt -- --check
cargo add <crate>
cargo update
cargo tree
cargo audit
cargo publish --dry-run
cargo publish