ulid 0.5.0

a Universally Unique Lexicographically Sortable Identifier implementation
Documentation
[package]
name = "ulid"
version = "0.5.0"
authors = ["dylanhart <dylan96hart@gmail.com>"]
edition = "2018"

license = "MIT"
readme = "README.md"

description = "a Universally Unique Lexicographically Sortable Identifier implementation"
keywords = ["ulid", "uuid", "sortable", "identifier"]

repository = "https://github.com/dylanhart/ulid-rs"

[features]
default = ["std"]
std = ["rand", "chrono"]

[dependencies]
serde = { version = "1.0", features = ["derive"], optional = true }
rand = { version = "0.8", optional = true }
# -- Sync versions with the WASM target below --
chrono = { version = "0.4", optional = true }
uuid = { version = "0.8", optional = true }

[target.'cfg(target_arch = "wasm32")'.dependencies]
# -- Sync versions with non-WASM targets above --
chrono = { version = "0.4", features = ["wasmbind"], optional = true }
uuid = { version = "0.8", features = ["wasm-bindgen"], optional = true }

[dev-dependencies]
bencher = "0.1"

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

[workspace]
members = ["cli"]

[package.metadata.docs.rs]
all-features = true