]> git.proxmox.com Git - rustc.git/blame - vendor/indexmap/Cargo.toml
New upstream version 1.46.0~beta.2+dfsg1
[rustc.git] / vendor / indexmap / Cargo.toml
CommitLineData
dc9dc135
XL
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
f035d41b 6# to registry (e.g., crates.io) dependencies
dc9dc135
XL
7#
8# If you believe there's an error in this file please file an
9# issue against the rust-lang/cargo repository. If you're
10# editing this file be aware that the upstream Cargo.toml
11# will likely look very different (and much more reasonable)
12
13[package]
14name = "indexmap"
f035d41b 15version = "1.4.0"
dc9dc135 16authors = ["bluss", "Josh Stone <cuviper@gmail.com>"]
f035d41b 17build = "build.rs"
dc9dc135
XL
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/"
f035d41b
XL
20keywords = ["hashmap", "no_std"]
21categories = ["data-structures", "no-std"]
dc9dc135
XL
22license = "Apache-2.0/MIT"
23repository = "https://github.com/bluss/indexmap"
24[package.metadata.docs.rs]
f035d41b 25features = ["serde-1", "rayon"]
dc9dc135
XL
26
27[package.metadata.release]
28no-dev-version = true
f035d41b 29tag-name = "{{version}}"
dc9dc135
XL
30[profile.bench]
31debug = true
32
33[lib]
34bench = false
f035d41b
XL
35[dependencies.rayon]
36version = "1.0"
37optional = true
38
dc9dc135
XL
39[dependencies.serde]
40version = "1.0"
41optional = true
42[dev-dependencies.fnv]
43version = "1.0"
44
45[dev-dependencies.itertools]
f035d41b 46version = "0.8"
dc9dc135
XL
47
48[dev-dependencies.lazy_static]
f035d41b 49version = "1.3"
dc9dc135
XL
50
51[dev-dependencies.quickcheck]
f035d41b 52version = "0.9"
dc9dc135
XL
53default-features = false
54
55[dev-dependencies.rand]
f035d41b
XL
56version = "0.7"
57features = ["small_rng"]
dc9dc135
XL
58
59[dev-dependencies.serde_test]
f035d41b
XL
60version = "1.0.99"
61[build-dependencies.autocfg]
62version = "1"
dc9dc135
XL
63
64[features]
65serde-1 = ["serde"]
66test_debug = []
67test_low_transition_point = []