embed-collections 0.12.1

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.12.1"
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",
    "seglist",
    "various",
]
dlist = []
full = [
    "avl",
    "btree",
    "dlist",
    "irc",
    "various",
    "seglist",
    "slist",
]
irc = ["dep:atomic-traits"]
seglist = []
slist = []
std = []
trace_log = ["dep:log"]
various = []

[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.atomic-traits]
version = "0.4"
optional = true

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

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

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

[dev-dependencies.crossfire]
version = "3.1"

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

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

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

[lints.clippy]
collapsible_else_if = "allow"
collapsible_match = "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"