# FastID-rs
[](http://crates.io/crates/fastid)
[](https://docs.rs/fastid)
[](http://crates.io/crates/fastid)
[](https://github.com/JoyMoe/FastID-rs/blob/master/LICENSE)
Snowflake-like ID generating in Rust
## Usage
```rust
use fastid::FastIdWorker;
let mut worker = FastIdWorker::new(1);
let id = worker.next_id();
println!("{:#064b}", id);
println!("{}", id);
```
## License
The MIT License
More info see [LICENSE](LICENSE)