cryoid 0.1.0

extremely lightweight ID generator inspired by Snowflake
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.79"
name = "cryoid"
version = "0.1.0"
authors = ["syncbtx"]
build = false
exclude = [
    ".idea/",
    ".github/",
    ".gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "extremely lightweight ID generator inspired by Snowflake"
documentation = "https://docs.rs/cryoid"
readme = "README.md"
keywords = [
    "id",
    "snowflake",
    "no_std",
    "distributed",
    "embedded",
]
categories = [
    "algorithms",
    "no-std",
    "embedded",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/syncbtx/cryoid"

[features]
default = []
std = []

[lib]
name = "cryoid"
path = "src/lib.rs"

[[example]]
name = "minimal"
path = "examples/minimal/src/main.rs"

[[bench]]
name = "gen"
path = "benches/gen.rs"
harness = false

[dependencies]

[dev-dependencies.divan]
version = "0.1"

[profile.bench]
opt-level = 3
lto = true
codegen-units = 1

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"