1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies.
7#
8# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
11
12[package]
13edition = "2018"
14name = "indexmap"
15version = "1.8.0"
16authors = ["bluss", "Josh Stone <cuviper@gmail.com>"]
17build = "build.rs"
18description = "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"
19documentation = "https://docs.rs/indexmap/"
20keywords = ["hashmap", "no_std"]
21categories = ["data-structures", "no-std"]
22license = "Apache-2.0/MIT"
23repository = "https://github.com/bluss/indexmap"
24[package.metadata.docs.rs]
25features = ["serde-1", "rayon"]
26
27[package.metadata.release]
28no-dev-version = true
29tag-name = "{{version}}"
30[profile.bench]
31debug = true
32
33[lib]
34bench = false
35[dependencies.hashbrown]
36version = "0.11"
37features = ["raw"]
38default-features = false
39
40[dependencies.rayon]
41version = "1.4.1"
42optional = true
43
44[dependencies.rustc-rayon]
45version = "0.3"
46optional = true
47
48[dependencies.serde]
49version = "1.0"
50optional = true
51default-features = false
52[dev-dependencies.fnv]
53version = "1.0"
54
55[dev-dependencies.fxhash]
56version = "0.2.1"
57
58[dev-dependencies.itertools]
59version = "0.9"
60
61[dev-dependencies.lazy_static]
62version = "1.3"
63
64[dev-dependencies.quickcheck]
65version = "0.9"
66default-features = false
67
68[dev-dependencies.rand]
69version = "0.7"
70features = ["small_rng"]
71
72[dev-dependencies.serde_derive]
73version = "1.0"
74[build-dependencies.autocfg]
75version = "1"
76
77[features]
78serde-1 = ["serde"]
79std = []
80test_debug = []
81test_low_transition_point = []
82