From 68c069d6ea1c045efd68ac12c478859416521163 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 12:20:07 +0000 Subject: [PATCH] build(deps): bump the language-server-deps group with 2 updates Bumps the language-server-deps group with 2 updates: [indexmap](https://github.com/indexmap-rs/indexmap) and [strum](https://github.com/Peternator7/strum). Updates `indexmap` from 2.1.0 to 2.2.1 - [Changelog](https://github.com/indexmap-rs/indexmap/blob/master/RELEASES.md) - [Commits](https://github.com/indexmap-rs/indexmap/compare/2.1.0...2.2.1) Updates `strum` from 0.25.0 to 0.26.1 - [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md) - [Commits](https://github.com/Peternator7/strum/commits) --- updated-dependencies: - dependency-name: indexmap dependency-type: direct:production update-type: version-update:semver-minor dependency-group: language-server-deps - dependency-name: strum dependency-type: direct:production update-type: version-update:semver-minor dependency-group: language-server-deps ... Signed-off-by: dependabot[bot] --- Cargo.lock | 32 +++++++++++++++++++++++++++----- Cargo.toml | 4 ++-- 2 files changed, 29 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3f457a7..804aab5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -167,7 +167,7 @@ checksum = "1a3638fc10f65e552d53318e042cefa542418633451163228fcbfb1a58a0ca85" dependencies = [ "numerals", "paste", - "strum", + "strum 0.25.0", "unicode-normalization", "unscanny", ] @@ -1372,9 +1372,9 @@ checksum = "029d73f573d8e8d63e6d5020011d3255b28c3ba85d6cf870a07184ed23de9284" [[package]] name = "indexmap" -version = "2.1.0" +version = "2.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" +checksum = "433de089bd45971eecf4668ee0ee8f4cec17db4f8bd8f7bc3197a6ce37aa7d9b" dependencies = [ "equivalent", "hashbrown 0.14.3", @@ -2713,7 +2713,16 @@ version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" dependencies = [ - "strum_macros", + "strum_macros 0.25.3", +] + +[[package]] +name = "strum" +version = "0.26.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "723b93e8addf9aa965ebe2d11da6d7540fa2283fcea14b3371ff055f7ba13f5f" +dependencies = [ + "strum_macros 0.26.1", ] [[package]] @@ -2729,6 +2738,19 @@ dependencies = [ "syn 2.0.39", ] +[[package]] +name = "strum_macros" +version = "0.26.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a3417fc93d76740d974a01654a09777cb500428cc874ca9f45edfe0c4d4cd18" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "rustversion", + "syn 2.0.39", +] + [[package]] name = "subsetter" version = "0.1.1" @@ -3393,7 +3415,7 @@ dependencies = [ "serde", "serde_json", "siphasher 1.0.0", - "strum", + "strum 0.26.1", "temp-dir", "thiserror", "tokio", diff --git a/Cargo.toml b/Cargo.toml index b3a157c..089e3fe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,7 +49,7 @@ fontdb = { version = "0.16.0", default-features = false, features = [ ] } futures = "0.3" if_chain = "1.0" -indexmap = "2.1.0" +indexmap = "2.2.1" internment = "0.7.1" itertools = "0.12.0" lazy_static = "1.4.0" @@ -61,7 +61,7 @@ same-file = "1.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.94" siphasher = "1.0" -strum = { version = "0.25.0", features = ["derive"] } +strum = { version = "0.26.1", features = ["derive"] } thiserror = "1.0.44" tokio = { version = "1.35.1", features = [ "macros",