rusty-ts 0.1.0

Prefix each line of stdin with a timestamp — a Rust port of moreutils `ts` with strict-compat mode, IANA timezone control, and a reusable byte-typed library API.
Documentation
1
2
3
4
5
6
7
8
//! `ts` binary alias. Identical body to `src/main.rs`. Installed only when
//! the `ts-alias` cargo feature is enabled. The argv[0] basename auto-detect
//! in `mode::resolve` routes invocations under this name into Strict mode
//! (FR-023).

fn main() -> std::process::ExitCode {
    rusty_ts::run()
}