mirror of
https://github.com/vacp2p/semaphore-rs.git
synced 2026-01-08 22:38:04 -05:00
8 lines
186 B
Rust
8 lines
186 B
Rust
use semaphore as lib;
|
|
|
|
fn main() {
|
|
let mut criterion = criterion::Criterion::default().configure_from_args();
|
|
lib::bench::group(&mut criterion);
|
|
criterion.final_summary();
|
|
}
|