1//! Utility helpers shared across the crate — OID formatting, relative time, text, etc. 2 3pub mod text; 4pub mod time; 5 6pub use text::truncate_str; 7pub use time::{fmt_oid, relative_time, short_oid, short_oid_str};