ticktock 0.8.0

Best effort constant framerate clock and fast timers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Frame-clock and timers
======================

`ticktock` makes it very easy to access frame-timing iterators to achieve
constant framerates:

```rust
// run with a constant framerate of 30 fps
for (tick, now) in Clock::framerate(30.0).iter() {
  // ...
}
```

See the [documentation](https://docs.rs/ticktock) for details.