timezone (tz) - English Language Timezone Conversion # Table of Contents 1. [Installation](#orgba9af16) 1. [Build from Source](#org1b2c114) 2. [crates.io](#org0f6e1b5) 2. [Usage](#orgd322d81) 1. [As a Library](#orgc30512a) 2. [As a CLI](#org5f5989b) 1. [Arguments](#org293ad34) 2. [Required Arguments](#org9215a22) # Installation ## Build from Source The source code can be found at [this](https://github.com/LiquidZulu/timezone) GitHub repo. When the source has been obtained the easiest way to compile is with `cargo build --release`, then add `path/to/timezone/target/release` to your [PATH](https://en.wikipedia.org/wiki/PATH_(variable)). I do not know if this software compiles on Windows, if you have any problems with doing this [open an issue](https://github.com/LiquidZulu/timezone/issues). ## crates.io This software is distributed also at [crates.io](https://crates.io/crates/timezone), and should be able to be installed with `cargo install timezone`. # Usage ## As a Library It should be possible to use this software in other rust programs with `cargo add timezone`. The majority of the actual conversion logic is handled by `chrono-tz`, but `src/parse.rs` provides several methods for parsing English-language inputs, which may be useful for you. ## As a CLI tz time origin_timezone destination_timezone day month year For example: tz 1pm et bst tomorrow will tell you what 1pm eastern US time is in British summer time tomorrow. ### Arguments #### `time` `time` should be in one of the following formats:
Format | Examples |
---|---|
SimpleAmPm | 1am, 10pm |
FullAmPm | 12:24am, 6:30pm |
MilitaryColon | 07:00, 13:52 |
Military | 0900, 1634 |