[package] name = "indexmap-rmw" edition = "2018" version = "1.6.3" authors = [ "bluss", "Josh Stone " ] documentation = "https://docs.rs/indexmap/" repository = "https://github.com/rmw-lib/indexmap" license = "Apache-2.0/MIT" description = """ 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. """ keywords = ["hashmap", "no_std"] categories = ["data-structures", "no-std"] build = "build.rs" [lib] bench = false [build-dependencies] autocfg = "1.0.1" [dependencies] serde = { version = "1.0.123", optional = true, default-features = false } rayon = { version = "1.5.0", optional = true } [dependencies.hashbrown] version = "0.9.1" default-features = false features = ["raw"] [dev-dependencies] itertools = "0.10.0" rand = { version = "0.8.3", features = ["small_rng"] } quickcheck = { version = "1.0.3", default-features = false } fnv = "1.0.7" lazy_static = "1.4.0" fxhash = "0.2.1" serde_derive = "1.0.123" [features] # Serialization with serde 1.0 serde-1 = ["serde"] # Force the use of `std`, bypassing target detection. std = [] # for testing only, of course test_low_transition_point = [] test_debug = [] [profile.bench] debug = true [package.metadata.release] no-dev-version = true tag-name = "{{version}}" [package.metadata.docs.rs] features = ["serde-1", "rayon"] [workspace] members = ["test-nostd", "test-serde"]