# uts
[](https://crates.io/crates/uts)
[](https://opensource.org/licenses/MIT)
[](https://github.com/rustcrate/uts/actions)
A simple Rust utility for getting Unix timestamps.
## Usage
Add to your `Cargo.toml`:
```toml
[dependencies]
uts = "0.1"
```
Then in your code:
```rust
use uts::time;
fn main() {
println!("Current timestamp: {}", time());
}
```
## License
MIT - see [LICENSE](LICENSE) file