- variants: use direct tuple comparison instead of format! string, add sort() after dedup - Memory section: sort rows by (test_name, backend, variant) before output - Extra Metrics section: sort rows by (test_name, variant_label) before output - add [lib] target to Cargo.toml to enable unit tests - add regression test: same data in different input order produces identical report
23 lines
420 B
TOML
23 lines
420 B
TOML
[package]
|
|
name = "log-viewer-bench"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
name = "log_viewer_bench"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "log-viewer-bench"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
memmap2 = "0.9"
|
|
nix = { version = "0.30", features = ["signal", "resource", "mman", "fs"] }
|
|
libc = "0.2"
|
|
memchr = "2"
|
|
serde_json = "1"
|
|
clap = { version = "4", features = ["derive"] }
|
|
crossbeam-channel = "0.5"
|
|
tempfile = "3"
|