From 948428fe36ca67778a9015b8a950c47e1bec8137 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 13:30:33 +0000 Subject: [PATCH] chore(deps): bump strum from 0.25.0 to 0.26.2 Bumps [strum](https://github.com/Peternator7/strum) from 0.25.0 to 0.26.2. - [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.2) --- 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 cd8c656..389479a 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.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" +checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29" dependencies = [ - "strum_macros", + "strum_macros 0.26.2", ] [[package]] @@ -276,6 +276,19 @@ dependencies = [ "syn 2.0.52", ] +[[package]] +name = "strum_macros" +version = "0.26.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "rustversion", + "syn 2.0.52", +] + [[package]] name = "syn" version = "1.0.98" diff --git a/compiler/Cargo.toml b/compiler/Cargo.toml index e748aa9..c1e1bbd 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.2", features = ["derive"]} strum_macros = "0.25" monkey-parser = { path = "../parser", version = "0.9.1" } monkey-object = { path = "../object", version = "0.9.1" }