Reorganize protocol examples

This commit is contained in:
Michael Mikovsky
2026-04-25 14:46:59 -06:00
parent b1ebe34ec1
commit 396c707662
12 changed files with 95 additions and 13 deletions
@@ -0,0 +1,8 @@
#[path = "support/bench_common.rs"]
mod common;
fn main() {
let iterations = common::iterations_from_args(1_000);
let checksum = common::run_hook_data_receive(iterations);
println!("hook_data_receive iterations={iterations} checksum={checksum}");
}