async-programming
Installation
SKILL.md
Async Programming Skill
Master Rust's asynchronous programming with async/await and Tokio.
Quick Start
Basic Setup
# Cargo.toml
[dependencies]
tokio = { version = "1", features = ["full"] }
use tokio;
#[tokio::main]
async fn main() {
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