| 1 | [package] |
| 2 | name = "indexmap" |
| 3 | edition = "2021" |
| 4 | version = "1.9.3" |
| 5 | documentation = "https://docs.rs/indexmap/" |
| 6 | repository = "https://github.com/bluss/indexmap" |
| 7 | license = "Apache-2.0 OR MIT" |
| 8 | description = "A hash table with consistent order and fast iteration." |
| 9 | keywords = ["hashmap" , "no_std" ] |
| 10 | categories = ["data-structures" , "no-std" ] |
| 11 | rust-version = "1.56" |
| 12 | |
| 13 | [lib] |
| 14 | bench = false |
| 15 | |
| 16 | [build-dependencies] |
| 17 | autocfg = "1" |
| 18 | |
| 19 | [dependencies] |
| 20 | arbitrary = { version = "1.0" , optional = true, default-features = false } |
| 21 | quickcheck = { version = "1.0" , optional = true, default-features = false } |
| 22 | serde = { version = "1.0" , optional = true, default-features = false } |
| 23 | rayon = { version = "1.4.1" , optional = true } |
| 24 | |
| 25 | # Internal feature, only used when building as part of rustc, |
| 26 | # not part of the stable interface of this crate. |
| 27 | rustc-rayon = { package = "rustc-rayon" , version = "0.5" , optional = true } |
| 28 | |
| 29 | [dependencies.hashbrown] |
| 30 | version = "0.12" |
| 31 | default-features = false |
| 32 | features = ["raw" ] |
| 33 | |
| 34 | [dev-dependencies] |
| 35 | itertools = "0.10" |
| 36 | rand = {version = "0.8" , features = ["small_rng" ] } |
| 37 | quickcheck = { version = "1.0" , default-features = false } |
| 38 | fnv = "1.0" |
| 39 | lazy_static = "1.3" |
| 40 | fxhash = "0.2.1" |
| 41 | serde_derive = "1.0" |
| 42 | |
| 43 | [features] |
| 44 | # Serialization with serde 1.0 |
| 45 | serde-1 = ["serde" ] |
| 46 | |
| 47 | # Force the use of `std`, bypassing target detection. |
| 48 | std = [] |
| 49 | |
| 50 | # for testing only, of course |
| 51 | test_low_transition_point = [] |
| 52 | test_debug = [] |
| 53 | |
| 54 | [profile.bench] |
| 55 | debug = true |
| 56 | |
| 57 | [package.metadata.release] |
| 58 | no-dev-version = true |
| 59 | tag-name = "{{version}}" |
| 60 | |
| 61 | [package.metadata.docs.rs] |
| 62 | features = ["arbitrary" , "quickcheck" , "serde-1" , "rayon" ] |
| 63 | |
| 64 | [workspace] |
| 65 | members = ["test-nostd" , "test-serde" ] |
| 66 | |