[package]
edition = "2024"
rust-version = "1.85.0"
name = "beakid"
version = "0.2.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Snowflake-like 64-bit unique ID generator with PostgreSQL BIGINT-friendly i64 IDs."
homepage = "https://github.com/tokime/crates/tree/main/beakid"
documentation = "https://docs.rs/beakid"
readme = "README.md"
keywords = [
"id",
"snowflake",
"unique",
"bigint",
"postgres",
]
categories = [
"data-structures",
"database",
]
license = "MIT"
repository = "https://github.com/tokime/crates"
[lib]
name = "beakid"
path = "src/lib.rs"
[[test]]
name = "config_env"
path = "tests/config_env.rs"
[[test]]
name = "generator_concurrency"
path = "tests/generator_concurrency.rs"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.tokistamp]
version = "0.1.3"