linked-hash-table 0.1.1

A linked hash table implementation for insert-order iteration and efficient lookups.
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 = "linked-hash-table"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A linked hash table implementation for insert-order iteration and efficient lookups."
homepage = "https://github.com/xelis-project/linked-hash-table"
readme = "README.md"
keywords = [
    "hashmap",
    "linked",
    "map",
    "ordered",
    "insertion-order",
]
license = "MIT"
repository = "https://github.com/xelis-project/linked-hash-table"

[features]
serde = ["dep:serde"]

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

[dependencies.hashbrown]
version = "0.16"

[dependencies.serde]
version = "1"
optional = true
default-features = false

[dev-dependencies.serde_json]
version = "1"

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage)"]