ds-ext 0.4.0

Extensions to standard Rust data structures which provide additional capabilities
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 = "2021"
name = "ds-ext"
version = "0.4.0"
authors = ["code@tinychain.net"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Extensions to standard Rust data structures which provide additional capabilities"
readme = "README.md"
keywords = [
    "ordered",
    "set",
    "map",
    "custom",
    "order",
]
categories = ["data-structures"]
license = "Apache-2.0"
repository = "https://github.com/haydnv/ds-ext"

[features]
all = [
    "hash",
    "stream",
    "serialize",
]
hash = [
    "async-hash",
    "hex",
]
serialize = ["serde"]
stream = [
    "async-trait",
    "destream",
]

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

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

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

[dependencies.async-hash]
version = "0.6"
optional = true

[dependencies.async-trait]
version = "0.1"
optional = true

[dependencies.derive_more]
version = "2.1"
features = ["display"]

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

[dependencies.get-size]
version = "0.1"

[dependencies.get-size-derive]
version = "0.1"

[dependencies.hex]
version = "0.4"
optional = true

[dependencies.safecast]
version = "0.2"

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

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

[dev-dependencies.futures]
version = "0.3"

[dev-dependencies.rand]
version = "0.9"

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

[dev-dependencies.tbon]
version = "0.9"