rust-performance
Installation
SKILL.md
Rust Performance Skill
Master performance optimization: profiling, benchmarking, and zero-cost abstractions.
Quick Start
Benchmarking
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "my_bench"
harness = false
use criterion::{criterion_group, criterion_main, Criterion, black_box};
Related skills
More from pluginagentmarketplace/custom-plugin-rust
rust-wasm
Master WebAssembly with Rust - wasm-pack, wasm-bindgen, and browser integration
46rust-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
4trait-generics
Master Rust traits, generics, and type system
4