Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ncharlton02/chroniker
- Owner: ncharlton02
- License: mit
- Created: 2017-07-07T23:25:39.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-23T17:01:45.000Z (over 7 years ago)
- Last Synced: 2024-10-30T00:27:31.398Z (9 days ago)
- Topics: rust-library, timers
- Language: Rust
- Homepage:
- Size: 35.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```