rust-concurrency
Installation
SKILL.md
Rust Concurrency Skill
Master thread-based concurrency: threads, channels, synchronization, and parallel processing.
Quick Start
Threads
use std::thread;
let handle = thread::spawn(|| {
println!("Hello from thread!");
42
});
let result = handle.join().unwrap();
Related skills
More from pluginagentmarketplace/custom-plugin-rust
rust-wasm
Master WebAssembly with Rust - wasm-pack, wasm-bindgen, and browser integration
46rust-performance
Master Rust performance - profiling, benchmarking, and optimization
12rust-docker
Master Docker containerization for Rust applications
5rust-cli
Build professional CLI applications with clap and TUI
4rust-testing
Master Rust testing - unit tests, integration tests, mocking, and TDD
4cargo-ecosystem
Master Cargo, testing, and Rust development tools
4