tz-rs 0.7.3

A pure Rust reimplementation of libc functions localtime, gmtime and mktime.
Documentation
1
2
3
4
5
6
7
8
//! Parsing functions.

mod tz_file;
mod tz_string;
mod utils;

pub(crate) use tz_file::parse_tz_file;
pub(crate) use tz_string::parse_posix_tz;