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
Installs
4
GitHub Stars
1
First Seen
Jan 24, 2026