---
name: hashgraph-online/rust-library-performance-features
source: https://app.decimal.ai/s/hashgraph-online-rust-library-performance-features@1/SKILL.md
source_sha256: ab9fcd1a3295
---

# Rust Library Performance Features

Use this skill when a Rust library needs performance work that can be measured
and shipped behind clear Cargo feature boundaries.

## Core Workflow

1. Define the library operation and input sizes that matter to downstream users.
2. Add or repair benchmarks before optimizing.
3. Compare baseline and candidate implementations with the same harness.
4. Use Cargo features for optional capabilities and dependencies.
5. Test the feature matrix, including default features disabled.
6. Document performance claims with scope and measurement commands.

## Read Next

| Task | Load |
|------|------|
| Add benchmarks or optimize a hot path | `guidelines.md`, `workflows/benchmark-feature-matrix.md` |
| Review Cargo features and optional dependencies | `references/performance-feature-patterns.md` |
| Validate performance claims before release | `references/performance-feature-patterns.md` |

## Source Notes

Guidance is transformed and paraphrased from Herbert Wolverson,
*Advanced Hands-On Rust*, especially Chapters 2 and 3 on creating, testing,
optimizing, benchmarking, and feature-gating a library. Examples are original
skeletons.