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