rusty-pv 0.2.0

Pipe viewer — a Rust port of Andrew Wood's `pv(1)` with progress bar, ETA, rate display, token-bucket rate limiting, IEC/SI unit math, SIGWINCH-aware terminal redraw, SIGUSR1 size refresh, multi-instance cursor coordination, and a typed library API.
Documentation
1
2
3
4
5
6
7
8
//! Shared fixture helpers for integration tests.

use assert_cmd::Command;

/// Command for the `rusty-pv` binary.
pub fn rusty_pv_cmd() -> Command {
    Command::cargo_bin("rusty-pv").expect("binary built")
}