embed-collections 0.2.4

A collection of intrusive data structures (linked lists) for Rust, supporting various pointer types.
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"
name = "embed-collections"
version = "0.2.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A collection of intrusive data structures (linked lists) for Rust, supporting various pointer types."
homepage = "https://github.com/NaturalIO/embed-collections-rs"
readme = "README.md"
keywords = [
    "intrusive",
    "linked-list",
    "collection",
]
categories = [
    "data-structures",
    "no-std",
]
license = "MIT OR Apache-2.0"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
avl = []
default = [
    "std",
    "full",
]
dlist = []
full = [
    "slist",
    "dlist",
    "avl",
]
slist = []
std = []

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

[[bench]]
name = "avl"
path = "benches/avl.rs"
harness = false
required-features = ["avl"]

[[bench]]
name = "range_tree"
path = "benches/range_tree.rs"
harness = false
required-features = ["avl"]

[dependencies]

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

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

[dev-dependencies.rstest]
version = "0"