thetime 0.1.2

A simple Rust library for dealing with the time, both NTP and System.
Documentation
1
2
3
4
5
6
7
8
9
# thetime

## Simple Rust library for time

- builds on top of std and chrono
- very simple and intuitive to use
## Examples
```rust
use thetime::{System, Time};
println!("It has been {} seconds since 1 Jan 1970", System::now().unix());
```