feat: scaffold workspace with bench-common, bench-server, bench-runner

- bench-common: KeyExchangeMode enum, BenchRecord NDJSON struct
- bench-server: CLI stub with --mode and --listen
- bench-runner: CLI stub with --mode, --server, --payload-bytes, --iters, --warmup, --concurrency, --out
This commit is contained in:
2026-01-25 16:17:05 +02:00
parent bb0a195e73
commit 4cec80f30e
9 changed files with 948 additions and 6 deletions

14
bench-server/Cargo.toml Normal file
View File

@@ -0,0 +1,14 @@
[package]
name = "bench-server"
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
bench-common.workspace = true
clap.workspace = true
miette.workspace = true
tokio.workspace = true
[lints]
workspace = true