semaphore-rs/criterion.rs

8 lines
186 B
Rust
Raw Normal View History

2022-03-01 03:44:30 +00:00
use semaphore as lib;
fn main() {
let mut criterion = criterion::Criterion::default().configure_from_args();
lib::bench::group(&mut criterion);
criterion.final_summary();
}