rbenchmark

Library for evaluating the performance of your computer, written in pure Rust

Example

```rust use rbenchmark::prelude::*;

let mut runner = BenchmarkRunner::default(); let result = runner.runall(|progress | {}).unwrap(); println!("{:?}", result); ```

Features