From 431411a9921e48b570b4fda1cf9d63f3ec02e83e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 2 Feb 2023 14:02:05 +0000 Subject: [PATCH] Bump indexmap from 1.7.0 to 1.9.2 Bumps [indexmap](https://github.com/bluss/indexmap) from 1.7.0 to 1.9.2. - [Release notes](https://github.com/bluss/indexmap/releases) - [Changelog](https://github.com/bluss/indexmap/blob/master/RELEASES.md) - [Commits](https://github.com/bluss/indexmap/compare/1.7.0...1.9.2) --- updated-dependencies: - dependency-name: indexmap dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 18 ++++++------------ Cargo.toml | 2 +- rustworkx-core/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d51344a160..44a17d8718 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -109,12 +109,6 @@ dependencies = [ "wasi", ] -[[package]] -name = "hashbrown" -version = "0.11.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" - [[package]] name = "hashbrown" version = "0.12.3" @@ -136,12 +130,12 @@ dependencies = [ [[package]] name = "indexmap" -version = "1.7.0" +version = "1.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5" +checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" dependencies = [ "autocfg", - "hashbrown 0.11.2", + "hashbrown", "rayon", ] @@ -355,7 +349,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ccd4149c8c3975099622b4e1962dac27565cf5663b76452c3e2b66e0b6824277" dependencies = [ "cfg-if", - "hashbrown 0.12.3", + "hashbrown", "indexmap", "indoc", "libc", @@ -518,7 +512,7 @@ version = "0.13.0" dependencies = [ "ahash 0.8.0", "fixedbitset", - "hashbrown 0.12.3", + "hashbrown", "indexmap", "ndarray", "num-bigint", @@ -542,7 +536,7 @@ version = "0.13.0" dependencies = [ "ahash 0.8.0", "fixedbitset", - "hashbrown 0.12.3", + "hashbrown", "indexmap", "num-traits", "petgraph", diff --git a/Cargo.toml b/Cargo.toml index 5f329eb173..cdce88aa01 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -47,7 +47,7 @@ version = "^0.15.6" features = ["rayon"] [dependencies.indexmap] -version = "1.7" +version = "1.9" features = ["rayon"] [profile.release] diff --git a/rustworkx-core/Cargo.toml b/rustworkx-core/Cargo.toml index 6c9a00306e..63c19396ce 100644 --- a/rustworkx-core/Cargo.toml +++ b/rustworkx-core/Cargo.toml @@ -23,7 +23,7 @@ version = "0.12" features = ["rayon"] [dependencies.indexmap] -version = "1.7" +version = "1.9" features = ["rayon"] [dev-dependencies]