]> git.proxmox.com Git - rustc.git/blobdiff - vendor/indexmap/Cargo.toml
New upstream version 1.55.0+dfsg1
[rustc.git] / vendor / indexmap / Cargo.toml
index 54e07a98c90123c67dbf918de1feb7ca9c3b07bf..ed0bdc0aa44693e6e3a0ede214f018948a0d4b06 100644 (file)
@@ -13,7 +13,7 @@
 [package]
 edition = "2018"
 name = "indexmap"
-version = "1.6.2"
+version = "1.7.0"
 authors = ["bluss", "Josh Stone <cuviper@gmail.com>"]
 build = "build.rs"
 description = "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"
@@ -34,12 +34,12 @@ debug = true
 [lib]
 bench = false
 [dependencies.hashbrown]
-version = "0.9.1"
+version = "0.11"
 features = ["raw"]
 default-features = false
 
 [dependencies.rayon]
-version = "1.0"
+version = "1.2"
 optional = true
 
 [dependencies.serde]