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
//! Time-rendering machinery: format strings, timezone resolution, clock
//! sources. See `plan.md` §Architecture (Components: Time Renderer, TZ
//! Resolver, Clock Source).

pub mod clock;
pub mod format;
pub mod tz;