timey 0.2.0

A simple command line tool for converting between timestamps and datetime strings
1
2
3
4
5
6
7
8
9
10
11
extern crate chrono;
extern crate clap;
extern crate clipboard;
use timey;

fn main() {
    match timey::run() {
        Ok(_) => (),
        Err(err) => eprintln!("{}", err),
    }
}