timekit 0.2.0

A simple Rust library for working with timezones and displaying current time in multiple zones.
Documentation
pub const OFFSET_UTC: i64 = 0;
pub const OFFSET_KST: i64 = 32400; // Korea Standard Time (UTC+9)
pub const OFFSET_EST: i64 = -18000; // Eastern Standard Time (UTC-5)
pub const OFFSET_PST: i64 = -28800; // Pacific Standard Time (UTC-8)
pub const OFFSET_JST: i64 = 32400; // Japan Standard Time (UTC+9)
pub const OFFSET_IST: i64 = 19800; // India Standard Time (UTC+5:30)
pub const OFFSET_CET: i64 = 3600; // Central European Time (UTC+1)
pub const OFFSET_AST: i64 = -14400; // Atlantic Standard Time (UTC-4)
pub const OFFSET_CST: i64 = -21600; // Central Standard Time (UTC-6)
pub const OFFSET_MST: i64 = -25200; // Mountain Standard Time (UTC-7)
pub const OFFSET_AKST: i64 = -32400; // Alaska Standard Time (UTC-9)
pub const OFFSET_HST: i64 = -36000; // Hawaii Standard Time (UTC-10)
pub const OFFSET_BST: i64 = 3600; // British Summer Time (UTC+1)
pub const OFFSET_WET: i64 = 0; // Western European Time (UTC+0)
pub const OFFSET_EET: i64 = 7200; // Eastern European Time (UTC+2)
pub const OFFSET_SAST: i64 = 7200; // South Africa Standard Time (UTC+2)
pub const OFFSET_EAT: i64 = 10800; // East Africa Time (UTC+3)
pub const OFFSET_AEST: i64 = 36000; // Australian Eastern Standard Time (UTC+10)
pub const OFFSET_ACST: i64 = 34200; // Australian Central Standard Time (UTC+9:30)
pub const OFFSET_AWST: i64 = 28800; // Australian Western Standard Time (UTC+8)
pub const OFFSET_CST_ASIA: i64 = 28800; // China Standard Time (UTC+8)
pub const OFFSET_SGT: i64 = 28800; // Singapore Time (UTC+8)
pub const OFFSET_HKT: i64 = 28800; // Hong Kong Time (UTC+8)

// Time units
pub const SECONDS_IN_YEAR: i64 = 31_536_000; //365 days to seconds
pub const SECONDS_IN_LEAPYEAR: i64 = 31_622_400; //366 days to seconds
pub const SECONDS_IN_WEEK: i64 = 604_800; //7 days to seconds
pub const SECONDS_IN_DAY: i64 = 86_400;
pub const SECONDS_IN_HOUR: i64 = 3_600;
pub const SECONDS_IN_MINUTE: i64 = 60;