rust

star 25

Rust ecosystem = cargo + rustc + clippy + rustfmt.

plurigrid By plurigrid schedule Updated 2/16/2026

name: rust description: Rust ecosystem = cargo + rustc + clippy + rustfmt. metadata: trit: 0

rust

Rust ecosystem = cargo + rustc + clippy + rustfmt.

Atomic Skills

Skill Commands Domain
cargo 36 Package manager
rustc 1 Compiler
clippy 1 Linter
rustfmt 1 Formatter

Workflow

cargo new project
cd project
cargo add serde tokio
cargo build --release
cargo test
cargo clippy
cargo fmt

Cargo.toml

[package]
name = "myapp"
version = "0.1.0"
edition = "2021"

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

Cross-compile

rustup target add aarch64-apple-darwin
cargo build --target aarch64-apple-darwin
Install via CLI
npx skills add https://github.com/plurigrid/asi --skill rust
Repository Details
star Stars 25
call_split Forks 7
navigation Branch main
article Path SKILL.md
More from Creator