rusty_ulid 1.0.0

Rust ULID (Universally Unique Lexicographically Sortable Identifier) generation and processing
Documentation
# See https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "rusty_ulid"
# remember to update html_root_url in src/lib.rs
version = "1.0.0"
description = "Rust ULID (Universally Unique Lexicographically Sortable Identifier) generation and processing"
authors = ["Joern Huxhorn <jhuxhorn@googlemail.com>"]
repository = "https://github.com/huxi/rusty_ulid"
license = "MIT/Apache-2.0"
readme = "README.md"
edition = "2021"

keywords = ["ulid", "uuid", "sortable", "identifier"]
categories = [
    "data-structures",
    "date-and-time",
    "encoding",
    "parsing",
    "value-formatting",
]

[features]
# The default set of optional packages. Most people will want to use these
# packages, but they are strictly optional.
default = ["ulid-generation", "serde", "doc-comment"]
ulid-generation = ["rand", "chrono"]
ulid-generation-time = ["rand", "time"]

[dependencies]
rand = { version = "0.8", optional = true }
time = { version = "0.3", optional = true }
chrono = { version = "0.4", optional = true, default_features = false, features = ["std", "clock"] }
serde = { version = "1", optional = true }
doc-comment = { version = "0.3", optional = true }

[dev-dependencies]
criterion = "0.3"
serde_test = "1"

[[bench]]
name = "my_benchmark"
harness = false