Crate to generate unique 64-bit IDs in centralised or decentralised systems.
Based on the [Twitter Snowflake](https://blog.twitter.com/engineering/en_us/a/2010/announcing-snowflake) algorithm.
```rust
use chronoflake::IdGenerator;
const MACHINE_ID: u16 = 49;
fn main() {
}