[package]
edition = "2024"
rust-version = "1.94"
name = "qubit-id"
version = "0.2.2"
authors = ["Haixing Hu <starfish.hu@gmail.com>"]
build = false
include = [
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/README.zh_CN.md",
"/doc/**/user_guide*.md",
"/examples/**",
"/src/**",
"/tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ID generation utilities for Rust, including Qubit Snowflake, classic Snowflake, Sonyflake-style, and fast UUID-like generators"
homepage = "https://github.com/qubit-ltd/rs-id"
documentation = "https://docs.rs/qubit-id"
readme = "README.md"
keywords = [
"id",
"snowflake",
"uuid",
"sonyflake",
"qubit",
]
categories = [
"data-structures",
"concurrency",
]
license = "Apache-2.0"
repository = "https://github.com/qubit-ltd/rs-id"
[lib]
name = "qubit_id"
path = "src/lib.rs"
doctest = true
[[test]]
name = "mod"
path = "tests/mod.rs"
[dependencies.getrandom]
version = "0.4"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage)"]