tether-map 0.2.1

Order-preserving linked hash map with O(1) reordering
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 = "tether-map"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Order-preserving linked hash map with O(1) reordering"
readme = "README.md"
keywords = [
    "data-structures",
    "hashmap",
    "linked-list",
    "no-std",
    "order-preserving",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Jesterhearts/tether-map"

[features]
default = ["std"]
generational = []
std = []

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

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

[dependencies.bumpalo]
version = "3.20.2"

[dependencies.hashbrown]
version = "0.17.0"
features = [
    "default-hasher",
    "inline-more",
]
default-features = false

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

[dev-dependencies.hashlink]
version = "0.11.0"

[dev-dependencies.indexmap]
version = "2.11.0"

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

[profile.release-with-debug]
debug = 2
inherits = "release"