From 9812c5f3b4575c78700fb6dbf6a36e73ef373722 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Jan 2022 23:20:26 +0000 Subject: [PATCH] Bump strum_macros from 0.20.1 to 0.23.1 in /src/rust/engine Bumps [strum_macros](https://github.com/Peternator7/strum) from 0.20.1 to 0.23.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) --- updated-dependencies: - dependency-name: strum_macros dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- src/rust/engine/Cargo.lock | 11 +++++++++-- src/rust/engine/client/Cargo.toml | 2 +- src/rust/engine/process_execution/Cargo.toml | 2 +- src/rust/engine/workunit_store/Cargo.toml | 2 +- 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/src/rust/engine/Cargo.lock b/src/rust/engine/Cargo.lock index 47842e53e2f..897b8dcd0c0 100644 --- a/src/rust/engine/Cargo.lock +++ b/src/rust/engine/Cargo.lock @@ -2778,6 +2778,12 @@ dependencies = [ "base64", ] +[[package]] +name = "rustversion" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2cc38e8fa666e2de3c4aba7edeb5ffc5246c1c2ed0e3d17e560aeeba736b23f" + [[package]] name = "ryu" version = "1.0.5" @@ -3145,13 +3151,14 @@ checksum = "7318c509b5ba57f18533982607f24070a55d353e90d4cae30c467cdb2ad5ac5c" [[package]] name = "strum_macros" -version = "0.20.1" +version = "0.23.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee8bc6b87a5112aeeab1f4a9f7ab634fe6cbefc4850006df31267f4cfb9e3149" +checksum = "5bb0dc7ee9c15cea6199cde9a127fa16a4c5819af85395457ad72d68edc85a38" dependencies = [ "heck", "proc-macro2 1.0.32", "quote 1.0.10", + "rustversion", "syn 1.0.81", ] diff --git a/src/rust/engine/client/Cargo.toml b/src/rust/engine/client/Cargo.toml index 7ece44b047d..64df3cd6ef5 100644 --- a/src/rust/engine/client/Cargo.toml +++ b/src/rust/engine/client/Cargo.toml @@ -19,7 +19,7 @@ nix = "0.20" options = { path = "../options" } sha2 = "0.9" strum = "0.20" -strum_macros = "0.20" +strum_macros = "0.23" sysinfo = "0.17.1" tokio = { version = "1.4", features = ["rt-multi-thread", "macros", "net", "io-std", "io-util"] } uname = "0.1" diff --git a/src/rust/engine/process_execution/Cargo.toml b/src/rust/engine/process_execution/Cargo.toml index e5e20e20a45..d5a25ff0d41 100644 --- a/src/rust/engine/process_execution/Cargo.toml +++ b/src/rust/engine/process_execution/Cargo.toml @@ -46,7 +46,7 @@ rand = "0.8" prost = "0.9" prost-types = "0.9" strum = "0.20" -strum_macros = "0.20" +strum_macros = "0.23" tonic = { version = "0.6", features = ["transport", "codegen", "tls", "tls-roots", "prost"] } tryfuture = { path = "../tryfuture" } diff --git a/src/rust/engine/workunit_store/Cargo.toml b/src/rust/engine/workunit_store/Cargo.toml index 51be545a8dc..a7f072bb1da 100644 --- a/src/rust/engine/workunit_store/Cargo.toml +++ b/src/rust/engine/workunit_store/Cargo.toml @@ -16,5 +16,5 @@ tokio = { version = "1.4", features = ["rt"] } petgraph = "0.5" log = "0.4" strum = "0.20" -strum_macros = "0.20" +strum_macros = "0.23" uuid = { version = "0.7", features = ["v4"] }