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 = "2021"
14rust-version = "1.56"
15name = "indexmap"
16version = "1.9.2"
17description = "A hash table with consistent order and fast iteration."
18documentation = "https://docs.rs/indexmap/"
19readme = "README.md"
20keywords = [
21    "hashmap",
22    "no_std",
23]
24categories = [
25    "data-structures",
26    "no-std",
27]
28license = "Apache-2.0 OR MIT"
29repository = "https://github.com/bluss/indexmap"
30
31[package.metadata.release]
32no-dev-version = true
33tag-name = "{{version}}"
34
35[package.metadata.docs.rs]
36features = [
37    "arbitrary",
38    "quickcheck",
39    "serde-1",
40    "rayon",
41]
42
43[profile.bench]
44debug = true
45
46[lib]
47bench = false
48
49[dependencies.arbitrary]
50version = "1.0"
51optional = true
52default-features = false
53
54[dependencies.hashbrown]
55version = "0.12"
56features = ["raw"]
57default-features = false
58
59[dependencies.quickcheck]
60version = "1.0"
61optional = true
62default-features = false
63
64[dependencies.rayon]
65version = "1.4.1"
66optional = true
67
68[dependencies.rustc-rayon]
69version = "0.4"
70optional = true
71
72[dependencies.serde]
73version = "1.0"
74optional = true
75default-features = false
76
77[dev-dependencies.fnv]
78version = "1.0"
79
80[dev-dependencies.fxhash]
81version = "0.2.1"
82
83[dev-dependencies.itertools]
84version = "0.10"
85
86[dev-dependencies.lazy_static]
87version = "1.3"
88
89[dev-dependencies.quickcheck]
90version = "1.0"
91default-features = false
92
93[dev-dependencies.rand]
94version = "0.8"
95features = ["small_rng"]
96
97[dev-dependencies.serde_derive]
98version = "1.0"
99
100[build-dependencies.autocfg]
101version = "1"
102
103[features]
104serde-1 = ["serde"]
105std = []
106test_debug = []
107test_low_transition_point = []
108