rusty_ulid 2.0.1

Rust ULID (Universally Unique Lexicographically Sortable Identifier) generation and processing
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 = "2024"
rust-version = "1.88"
name = "rusty_ulid"
version = "2.0.1"
authors = ["Joern Huxhorn <jhuxhorn@googlemail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust ULID (Universally Unique Lexicographically Sortable Identifier) generation and processing"
readme = "README.md"
keywords = [
    "ulid",
    "uuid",
    "sortable",
    "identifier",
]
categories = [
    "data-structures",
    "date-and-time",
    "encoding",
    "parsing",
    "value-formatting",
]
license = "MIT/Apache-2.0"
repository = "https://github.com/huxi/rusty_ulid"

[features]
default = [
    "rand",
    "time",
    "serde",
]

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

[[bin]]
name = "rusty_ulid"
path = "src/main.rs"

[[test]]
name = "rocket"
path = "tests/rocket.rs"
required-features = ["rocket"]

[[test]]
name = "schemars"
path = "tests/schemars.rs"
required-features = ["schemars"]

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

[dependencies.chrono]
version = "0.4"
features = [
    "std",
    "clock",
]
optional = true
default-features = false

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

[dependencies.rocket]
version = "0.5"
optional = true

[dependencies.schemars]
version = "1"
optional = true

[dependencies.serde]
version = "1"
optional = true

[dependencies.time]
version = "0.3"
features = [
    "std",
    "formatting",
]
optional = true
default-features = false

[dev-dependencies.criterion]
version = "0.8"

[dev-dependencies.doc-comment]
version = "0.3"

[dev-dependencies.pretty_assertions]
version = "1.2.1"

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

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