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
//! Binary entry point for the `rusty-ts` CLI. Thin delegation into the
//! library's `run()` helper so the `ts-alias` feature can share the same
//! entry point via `src/bin/ts.rs`.

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