[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"