indexmap 1.3.0

A hash table with consistent order and fast iteration. The indexmap is a hash table where the iteration order of the key-value pairs is independent of the hash values of the keys. It has the usual hash table functionality, it preserves insertion order except after removals, and it allows lookup of its elements by either hash table key or numerical index. A corresponding hash set type is also provided. This crate was initially published under the name ordermap, but it was renamed to indexmap.
Documentation
[build-dependencies.autocfg]
version = "0.1.6"
[dependencies.rayon]
optional = true
version = "1.0"

[dependencies.serde]
optional = true
version = "1.0"
[dev-dependencies.fnv]
version = "1.0"

[dev-dependencies.itertools]
version = "0.8"

[dev-dependencies.lazy_static]
version = "1.3"

[dev-dependencies.quickcheck]
default-features = false
version = "0.8"

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

[dev-dependencies.serde_test]
version = "1.0.99"

[features]
serde-1 = ["serde"]
test_debug = []
test_low_transition_point = []

[lib]
bench = false

[package]
authors = ["bluss", "Josh Stone <cuviper@gmail.com>"]
build = "build.rs"
categories = ["data-structures", "no-std"]
description = "A hash table with consistent order and fast iteration.\n\nThe indexmap is a hash table where the iteration order of the key-value\npairs is independent of the hash values of the keys. It has the usual\nhash table functionality, it preserves insertion order except after\nremovals, and it allows lookup of its elements by either hash table key\nor numerical index. A corresponding hash set type is also provided.\n\nThis crate was initially published under the name ordermap, but it was renamed to\nindexmap.\n"
documentation = "https://docs.rs/indexmap/"
keywords = ["hashmap", "no_std"]
license = "Apache-2.0/MIT"
name = "indexmap"
repository = "https://github.com/bluss/indexmap"
version = "1.3.0"
[package.metadata.docs.rs]
features = ["serde-1", "rayon"]

[package.metadata.release]
no-dev-version = true
tag-name = "{{version}}"
[profile.bench]
debug = true