flat_rbtree 0.2.3

A flat, index-based Red-Black Tree with no heap allocations. Ideal for performance-critical or memory-constrained environments.
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 = "flat_rbtree"
version = "0.2.3"
authors = ["Matheus-git <mathiew0@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A flat, index-based Red-Black Tree with no heap allocations. Ideal for performance-critical or memory-constrained environments."
readme = "README.md"
keywords = [
    "rbtree",
    "red-black-tree",
    "no-alloc",
    "no_std",
    "embedded",
]
categories = [
    "data-structures",
    "embedded",
    "no-std",
    "memory-management",
]
license = "MIT"
repository = "https://github.com/matheus-git/flat_rbtree"

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

[features]
default = []
expanded = []

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

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

[dependencies]

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

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

[dev-dependencies.rbtree]
version = "0.1.7"

[profile.bench]
debug = 0