embed-collections 0.8.2

A collection of memory efficient and intrusive data structures
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.8.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A collection of memory efficient and intrusive data structures"
homepage = "https://github.com/NaturalIO/embed-collections-rs"
readme = "README.md"
keywords = [
    "intrusive",
    "linked-list",
    "collection",
    "avl",
    "btree",
]
categories = [
    "data-structures",
    "no-std",
]
license = "MIT OR Apache-2.0"

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

[features]
avl = []
btree = []
default = ["std"]
dlist = []
full = [
    "slist",
    "dlist",
    "avl",
    "btree",
]
slist = []
std = []
trace_log = ["dep:log"]

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

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

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

[[bench]]
name = "btree_common"
path = "benches/btree_common.rs"

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

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

[dependencies.log]
version = "0"
optional = true

[dev-dependencies.captains-log]
version = "0"
features = ["ringfile"]

[dev-dependencies.criterion2]
version = "3.0.2"

[dev-dependencies.fastrand]
version = "2.3"

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

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

[lints.clippy]
collapsible_else_if = "allow"
len_without_is_empty = "allow"
mut_from_ref = "allow"
needless_range_loop = "allow"
new_ret_no_self = "allow"
new_without_default = "allow"
result_unit_err = "allow"
transmute_ptr_to_ref = "allow"
type_complexity = "allow"