From 44bc24f8976cccb30da21c6e1e5b917df6308075 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 13:49:55 +0000 Subject: [PATCH] chore(deps): bump strum from 0.25.0 to 0.26.1 Bumps [strum](https://github.com/Peternator7/strum) from 0.25.0 to 0.26.1. - [Release notes](https://github.com/Peternator7/strum/releases) - [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md) - [Commits](https://github.com/Peternator7/strum/commits/v0.26.1) --- updated-dependencies: - dependency-name: strum dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 21 +++++++++++++++++---- compiler/Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 95676b3..5877d6f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -130,7 +130,7 @@ dependencies = [ "monkey-object", "monkey-parser", "strum", - "strum_macros", + "strum_macros 0.25.1", ] [[package]] @@ -256,11 +256,11 @@ checksum = "2e24979f63a11545f5f2c60141afe249d4f19f84581ea2138065e400941d83d3" [[package]] name = "strum" -version = "0.25.0" +version = "0.26.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" +checksum = "723b93e8addf9aa965ebe2d11da6d7540fa2283fcea14b3371ff055f7ba13f5f" dependencies = [ - "strum_macros", + "strum_macros 0.26.1", ] [[package]] @@ -276,6 +276,19 @@ dependencies = [ "syn 2.0.28", ] +[[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.28", +] + [[package]] name = "syn" version = "1.0.98" diff --git a/compiler/Cargo.toml b/compiler/Cargo.toml index e748aa9..40815bc 100644 --- a/compiler/Cargo.toml +++ b/compiler/Cargo.toml @@ -19,7 +19,7 @@ path = "main.rs" [dependencies] lazy_static = "1.4.0" byteorder = "1.5.0" -strum = { version = "0.25.0", features = ["derive"]} +strum = { version = "0.26.1", features = ["derive"]} strum_macros = "0.25" monkey-parser = { path = "../parser", version = "0.9.1" } monkey-object = { path = "../object", version = "0.9.1" }