rusty-pee 0.1.0

Fan stdin out to N concurrent shell-spawned children — a Rust port of moreutils `pee` with strict-compat mode, exit-code aggregation (Default max / Strict bitwise OR), backpressure-paced byte-perfect delivery, and a typed library API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Criterion benches for `rusty-pee`. Gated behind the `bench` feature.
//!
//! **STUB** — full criterion harness lands in Polish (T121/T122).

#[cfg(feature = "bench")]
fn main() {
    eprintln!("rusty-pee: bench harness not yet implemented (Polish phase)");
}

#[cfg(not(feature = "bench"))]
fn main() {
    eprintln!("rusty-pee: rebuild with --features bench to run throughput benches");
}