uuid 1.11.0

A library to generate and parse UUIDs.
Documentation
[badges.is-it-maintained-issue-resolution]
repository = "uuid-rs/uuid"

[badges.is-it-maintained-open-issues]
repository = "uuid-rs/uuid"

[badges.maintenance]
status = "actively-developed"

[dependencies.arbitrary]
optional = true
version = "1.1.3"

[dependencies.atomic]
default-features = false
optional = true
version = "0.6"

[dependencies.borsh]
default-features = false
optional = true
version = "1"

[dependencies.borsh-derive]
default-features = false
optional = true
version = "1"

[dependencies.bytemuck]
features = ["derive"]
optional = true
version = "1.14.0"

[dependencies.getrandom]
optional = true
version = "0.2"

[dependencies.md-5]
default-features = false
optional = true
version = "0.10"

[dependencies.rand]
optional = true
version = "0.8"

[dependencies.serde]
default-features = false
optional = true
version = "1.0.56"

[dependencies.sha1_smol]
default-features = false
optional = true
version = "1"

[dependencies.slog]
optional = true
version = "2"

[dependencies.uuid-macro-internal]
optional = true
version = "1.11.0"

[dependencies.zerocopy]
features = ["derive"]
optional = true
version = "0.8"

[dev-dependencies.bincode]
version = "1.0"

[dev-dependencies.rustversion]
version = "1"

[dev-dependencies.serde_derive]
version = "1.0.79"

[dev-dependencies.serde_json]
version = "1.0"

[dev-dependencies.serde_test]
version = "1.0.56"

[dev-dependencies.trybuild]
version = "1.0.52"

[features]
atomic = ["dep:atomic"]
borsh = ["dep:borsh", "dep:borsh-derive"]
default = ["std"]
fast-rng = ["rng", "dep:rand"]
js = ["dep:wasm-bindgen", "getrandom?/js"]
macro-diagnostics = ["dep:uuid-macro-internal"]
md5 = ["dep:md-5"]
rng = ["dep:getrandom"]
sha1 = ["dep:sha1_smol"]
std = []
v1 = ["atomic"]
v3 = ["md5"]
v4 = ["rng"]
v5 = ["sha1"]
v6 = ["atomic"]
v7 = ["rng"]
v8 = []

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

[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(uuid_unstable)"]
level = "allow"
priority = 0

[package]
authors = ["Ashley Mannix<ashleymannix@live.com.au>", "Dylan DPC<dylan.dpc@gmail.com>", "Hunar Roop Kahlon<hunar.roop@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["data-structures", "no-std", "parser-implementations", "wasm"]
description = "A library to generate and parse UUIDs."
documentation = "https://docs.rs/uuid"
edition = "2018"
homepage = "https://github.com/uuid-rs/uuid"
include = ["src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
keywords = ["guid", "unique", "uuid"]
license = "Apache-2.0 OR MIT"
name = "uuid"
readme = "README.md"
repository = "https://github.com/uuid-rs/uuid"
rust-version = "1.60.0"
version = "1.11.0"

[package.metadata.docs.rs]
features = ["serde", "arbitrary", "slog", "borsh", "v1", "v3", "v4", "v5", "v6", "v7", "v8"]
rustc-args = ["--cfg", "uuid_unstable"]
rustdoc-args = ["--cfg", "uuid_unstable"]
targets = ["x86_64-unknown-linux-gnu"]

[package.metadata.playground]
features = ["serde", "v1", "v3", "v4", "v5", "v6", "v7", "v8"]

[target.'cfg(all(target_arch = "wasm32", target_vendor = "unknown", target_os = "unknown"))'.dependencies.wasm-bindgen]
optional = true
version = "0.2"

[target.'cfg(all(target_arch = "wasm32", target_vendor = "unknown", target_os = "unknown"))'.dev-dependencies.wasm-bindgen-test]
version = "0.3"

[target.'cfg(target = "wasm32-unknown-unknown")'.dev-dependencies.wasm-bindgen]
version = "0.2"