mirror of
https://github.com/vacp2p/semaphore-rs.git
synced 2025-02-23 09:08:28 +00: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();
|
|
}
|