From 686f4212c72537ffcf916997cab19612d61996bf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Jun 2023 23:20:44 -0400 Subject: [PATCH] build(deps): bump strum_macros from 0.24.3 to 0.25.0 (#663) Bumps [strum_macros](https://github.com/Peternator7/strum) from 0.24.3 to 0.25.0. - [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md) - [Commits](https://github.com/Peternator7/strum/commits) --- updated-dependencies: - dependency-name: strum_macros dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 17 +++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a6384f50..89ea6768 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -373,7 +373,7 @@ dependencies = [ "serde_json", "shadow-rs", "strum", - "strum_macros", + "strum_macros 0.25.0", "test-case", "thiserror", "tree-sitter", @@ -1345,7 +1345,7 @@ version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" dependencies = [ - "strum_macros", + "strum_macros 0.24.3", ] [[package]] @@ -1361,6 +1361,19 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "strum_macros" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe9f3bd7d2e45dcc5e265fbb88d6513e4747d8ef9444cf01a533119bce28a157" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "rustversion", + "syn 2.0.18", +] + [[package]] name = "syn" version = "1.0.109" diff --git a/Cargo.toml b/Cargo.toml index e76c0d51..194d97b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -57,7 +57,7 @@ anyhow = { version = "1.0.71", features = ["backtrace"] } phf = { version = "0.11.1", features = ["macros"] } console = "0.15.7" strum = { version = "0.24.1", features = ["derive"] } -strum_macros = "0.24.3" +strum_macros = "0.25.0" serde = { version = "1.0.164", features = ["derive"] } serde_json = "1.0.96" json5 = "0.4.1"