[dependencies.serde]
optional = true
version = "1.0"
[dependencies.uuid]
default-features = false
version = "1.0"
[features]
default = ["std", "v7"]
serde = ["dep:serde"]
std = ["uuid/std"]
v1 = ["uuid/v1"]
v3 = ["uuid/v3"]
v4 = ["uuid/v4"]
v5 = ["uuid/v5"]
v6 = ["uuid/v6"]
v7 = ["uuid/v7"]
v8 = ["uuid/v8"]
[lib]
name = "puuid"
path = "src/lib.rs"
[package]
authors = ["Harihar Nautiyal <me@hariharnautiyal.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Prefixed UUIDs: Type-safe, string-prefixed UUIDs that behave like standard UUIDs."
documentation = "https://h01.in/projects/puuid"
edition = "2024"
license = "MIT"
name = "puuid"
readme = "README.md"
repository = "https://github.com/h01-team/puuid"
version = "0.1.0"
[[test]]
name = "integration"
path = "tests/integration.rs"