rusty-snowflake

Crates.iorusty-snowflake
lib.rsrusty-snowflake
version0.2.0
sourcesrc
created_at2023-05-20 02:59:10.244565
updated_at2023-05-22 01:22:18.827925
descriptionA library for generating and parsing Snowflake IDs
homepage
repository
max_upload_size
id869188
size19,118
MakeShiftArtist (MakeShiftArtist)

documentation

README

rusty-snowflake

Crates.io Version Crates.io License Tests docs.rs

This library is a Snowflake ID generator and parser written entirely in Rust.

Features

  • Generate unique snowflake IDs based on timestamp, worker ID, and sequence number.
  • Parse snowflake IDs to retrieve timestamp, worker ID, and sequence number.

Installation

Add the following dependency to your Cargo.toml file:

[dependencies]
rusty-snowflake = "0.2.0"

Or run the following in your project directory

cargo add rusty-snowflake

Usage

use rusty_snowflake::SnowflakeGenerator;

fn main() {
    // Create a new snowflake generator with custom worker ID of 123
    let mut generator = SnowflakeGenerator::new(123);

    // Generate a new snowflake ID
    let snowflake = generator.next();
    println!("Generated snowflake id: {}", snowflake);

    // Parse the snowflake ID
    let parsed_snowflake = Snowflake::parse(snowflake.to_id());
    println!("Parsed snowflake: {:?}", parsed_snowflake);
}

Contributions

Contributions and feedback are welcome! If you encounter any issues or have suggestions for improvements, please open an issue or submit a pull request on the GitHub repository.

License

This project is licensed under the MIT License.

Commit count: 0

cargo fmt