Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ncharlton02/chroniker

A simple library to help with time in rust
https://github.com/ncharlton02/chroniker

rust-library timers

Last synced: 6 days ago
JSON representation

A simple library to help with time in rust

Awesome Lists containing this project

README

        

# Chroniker
A simple library to help with time in rust. [Documentation](https://docs.rs/chroniker/0.5.0/chroniker/)

## Utilities
Chroniker has many utilities. They include:
- Time Unit Conversion
- Thread Sleeping
- Retrieving the current system time
- Timers

## Examples
The utilities are covered in the examples
#### Getting Started
Covers the Timer API
```
$ cargo run --example getting_started
```
#### Millis Time
Covers how to get the Systems time in milliseconds
```
$ cargo run --example millis_time
```
#### Units
Covers how to convert time units
```
$ cargo run --example units
```