gitextract_igc6ri6v/ ├── .github/ │ └── workflows/ │ ├── ci.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE ├── README.md ├── benches/ │ └── poll_overhead.rs ├── examples/ │ ├── axum.rs │ ├── runtime.rs │ ├── stream.rs │ └── task.rs ├── release-plz.toml ├── src/ │ ├── derived_metrics.rs │ ├── lib.rs │ ├── metrics_rs.rs │ ├── runtime/ │ │ ├── metrics_rs_integration.rs │ │ └── poll_time_histogram.rs │ ├── runtime.rs │ ├── task/ │ │ └── metrics_rs_integration.rs │ └── task.rs └── tests/ └── auto_metrics.rs