From f238ef34c290171d6e8418144eaf28b494560f05 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 29 Feb 2024 19:52:00 +0000 Subject: [PATCH 1/5] Bump indexmap from 2.2.3 to 2.2.4 Bumps [indexmap](https://github.com/indexmap-rs/indexmap) from 2.2.3 to 2.2.4. - [Changelog](https://github.com/indexmap-rs/indexmap/blob/master/RELEASES.md) - [Commits](https://github.com/indexmap-rs/indexmap/compare/2.2.3...2.2.4) --- updated-dependencies: - dependency-name: indexmap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 38 ++++++++++++++++++++++++++------------ 1 file changed, 26 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8a9882771..797cf0288 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,6 +2,17 @@ # It is not intended for manual editing. version = 3 +[[package]] +name = "ahash" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" +dependencies = [ + "getrandom", + "once_cell", + "version_check", +] + [[package]] name = "ahash" version = "0.8.6" @@ -118,6 +129,9 @@ name = "hashbrown" version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" +dependencies = [ + "ahash 0.7.8", +] [[package]] name = "hashbrown" @@ -125,7 +139,7 @@ version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" dependencies = [ - "ahash", + "ahash 0.8.6", "allocator-api2", "rayon", ] @@ -150,17 +164,17 @@ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" dependencies = [ "autocfg", "hashbrown 0.12.3", + "rayon", ] [[package]] name = "indexmap" -version = "2.2.3" +version = "2.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "233cf39063f058ea2caae4091bf4a3ef70a653afbc026f5c4a4135d114e3c177" +checksum = "967d6dd42f16dbf0eb8040cb9e477933562684d3918f7d253f2ff9087fb3e7a3" dependencies = [ "equivalent", "hashbrown 0.14.3", - "rayon", ] [[package]] @@ -389,7 +403,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" dependencies = [ "fixedbitset", - "indexmap 2.2.3", + "indexmap 2.2.4", ] [[package]] @@ -412,7 +426,7 @@ checksum = "509354d8a769e8d0b567d6821b84495c60213162761a732d68ce87c964bd347f" dependencies = [ "autocfg", "equivalent", - "indexmap 2.2.3", + "indexmap 2.2.4", ] [[package]] @@ -431,8 +445,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "53bdbb96d49157e65d45cc287af5f32ffadd5f4761438b527b055fb0d4bb8233" dependencies = [ "cfg-if", - "hashbrown 0.14.3", - "indexmap 2.2.3", + "hashbrown 0.12.3", + "indexmap 1.9.3", "indoc", "libc", "memoffset", @@ -604,10 +618,10 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" name = "rustworkx" version = "0.15.0" dependencies = [ - "ahash", + "ahash 0.8.6", "fixedbitset", "hashbrown 0.14.3", - "indexmap 2.2.3", + "indexmap 1.9.3", "ndarray", "ndarray-stats", "num-bigint", @@ -630,10 +644,10 @@ dependencies = [ name = "rustworkx-core" version = "0.15.0" dependencies = [ - "ahash", + "ahash 0.8.6", "fixedbitset", "hashbrown 0.14.3", - "indexmap 2.2.3", + "indexmap 1.9.3", "num-traits", "petgraph", "priority-queue", From 1050a85add741fc86db54562c5bd4856b728c895 Mon Sep 17 00:00:00 2001 From: Ivan Carvalho Date: Thu, 29 Feb 2024 20:29:26 -0500 Subject: [PATCH 2/5] Fix indexmap bump (as is tradition) --- Cargo.lock | 30 ++++++++---------------------- 1 file changed, 8 insertions(+), 22 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 797cf0288..a044b6b0e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,17 +2,6 @@ # It is not intended for manual editing. version = 3 -[[package]] -name = "ahash" -version = "0.7.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" -dependencies = [ - "getrandom", - "once_cell", - "version_check", -] - [[package]] name = "ahash" version = "0.8.6" @@ -129,9 +118,6 @@ name = "hashbrown" version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" -dependencies = [ - "ahash 0.7.8", -] [[package]] name = "hashbrown" @@ -139,7 +125,7 @@ version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" dependencies = [ - "ahash 0.8.6", + "ahash", "allocator-api2", "rayon", ] @@ -164,7 +150,6 @@ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" dependencies = [ "autocfg", "hashbrown 0.12.3", - "rayon", ] [[package]] @@ -175,6 +160,7 @@ checksum = "967d6dd42f16dbf0eb8040cb9e477933562684d3918f7d253f2ff9087fb3e7a3" dependencies = [ "equivalent", "hashbrown 0.14.3", + "rayon", ] [[package]] @@ -445,8 +431,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "53bdbb96d49157e65d45cc287af5f32ffadd5f4761438b527b055fb0d4bb8233" dependencies = [ "cfg-if", - "hashbrown 0.12.3", - "indexmap 1.9.3", + "hashbrown 0.14.3", + "indexmap 2.2.4", "indoc", "libc", "memoffset", @@ -618,10 +604,10 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" name = "rustworkx" version = "0.15.0" dependencies = [ - "ahash 0.8.6", + "ahash", "fixedbitset", "hashbrown 0.14.3", - "indexmap 1.9.3", + "indexmap 2.2.4", "ndarray", "ndarray-stats", "num-bigint", @@ -644,10 +630,10 @@ dependencies = [ name = "rustworkx-core" version = "0.15.0" dependencies = [ - "ahash 0.8.6", + "ahash", "fixedbitset", "hashbrown 0.14.3", - "indexmap 1.9.3", + "indexmap 2.2.4", "num-traits", "petgraph", "priority-queue", From 1e7e7211136f4e2c0538bafdca3b56a357eeda54 Mon Sep 17 00:00:00 2001 From: Ivan Carvalho Date: Thu, 29 Feb 2024 20:31:39 -0500 Subject: [PATCH 3/5] Bump to 2.2.5 --- Cargo.lock | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a044b6b0e..babb94277 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -154,9 +154,9 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.2.4" +version = "2.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "967d6dd42f16dbf0eb8040cb9e477933562684d3918f7d253f2ff9087fb3e7a3" +checksum = "7b0b929d511467233429c45a44ac1dcaa21ba0f5ba11e4879e6ed28ddb4f9df4" dependencies = [ "equivalent", "hashbrown 0.14.3", @@ -389,7 +389,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" dependencies = [ "fixedbitset", - "indexmap 2.2.4", + "indexmap 2.2.5", ] [[package]] @@ -412,7 +412,7 @@ checksum = "509354d8a769e8d0b567d6821b84495c60213162761a732d68ce87c964bd347f" dependencies = [ "autocfg", "equivalent", - "indexmap 2.2.4", + "indexmap 2.2.5", ] [[package]] @@ -432,7 +432,7 @@ checksum = "53bdbb96d49157e65d45cc287af5f32ffadd5f4761438b527b055fb0d4bb8233" dependencies = [ "cfg-if", "hashbrown 0.14.3", - "indexmap 2.2.4", + "indexmap 2.2.5", "indoc", "libc", "memoffset", @@ -607,7 +607,7 @@ dependencies = [ "ahash", "fixedbitset", "hashbrown 0.14.3", - "indexmap 2.2.4", + "indexmap 2.2.5", "ndarray", "ndarray-stats", "num-bigint", @@ -633,7 +633,7 @@ dependencies = [ "ahash", "fixedbitset", "hashbrown 0.14.3", - "indexmap 2.2.4", + "indexmap 2.2.5", "num-traits", "petgraph", "priority-queue", From ef8b7dfed5eeee8f299ddb7a71ba710535b17518 Mon Sep 17 00:00:00 2001 From: Ivan Carvalho Date: Thu, 29 Feb 2024 20:35:42 -0500 Subject: [PATCH 4/5] Bump num-integer as well --- Cargo.lock | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index babb94277..ed31883b5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -310,11 +310,10 @@ dependencies = [ [[package]] name = "num-integer" -version = "0.1.45" +version = "0.1.46" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" +checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" dependencies = [ - "autocfg", "num-traits", ] From 77f880a75c387e443c5fcbc880cbc0753dd18fa7 Mon Sep 17 00:00:00 2001 From: Ivan Carvalho Date: Thu, 29 Feb 2024 20:40:29 -0500 Subject: [PATCH 5/5] Aggressive update --- Cargo.lock | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ed31883b5..f3ad63fb1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -86,9 +86,9 @@ checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" [[package]] name = "either" -version = "1.9.0" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" +checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a" [[package]] name = "equivalent" @@ -138,9 +138,9 @@ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" [[package]] name = "hermit-abi" -version = "0.3.4" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d3d0e0f38255e7fa3cf31335b3a56f05febd18025f4db5ef7a0cfb4f8da651f" +checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" [[package]] name = "indexmap" @@ -644,9 +644,9 @@ dependencies = [ [[package]] name = "ryu" -version = "1.0.16" +version = "1.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c" +checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" [[package]] name = "scopeguard" @@ -708,9 +708,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.48" +version = "2.0.52" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f" +checksum = "b699d15b36d1f02c3e7c69f8ffef53de37aefae075d8488d4ba1a7788d574a07" dependencies = [ "proc-macro2", "quote", @@ -719,9 +719,9 @@ dependencies = [ [[package]] name = "target-lexicon" -version = "0.12.13" +version = "0.12.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69758bda2e78f098e4ccb393021a0963bb3442eac05f135c30f61b7370bbafae" +checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f" [[package]] name = "unicode-ident"