From 2d74d11b7977b467bc3c2192fb8a336c6dafb700 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Feb 2022 14:52:44 +0000 Subject: [PATCH] Bump strum_macros from 0.23.1 to 0.24.0 Bumps [strum_macros](https://github.com/Peternator7/strum) from 0.23.1 to 0.24.0. - [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] --- Cargo.lock | 27 +++++++++++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 24 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b8c0804..e90de21 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1077,6 +1077,12 @@ dependencies = [ "unicode-segmentation", ] +[[package]] +name = "heck" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" + [[package]] name = "hermit-abi" version = "0.1.19" @@ -1704,7 +1710,7 @@ dependencies = [ "serde_cbor", "serde_json", "strum 0.24.0", - "strum_macros 0.23.1", + "strum_macros 0.24.0", "tokio", "tokio-stream", "toml", @@ -3115,7 +3121,7 @@ version = "0.4.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0" dependencies = [ - "heck", + "heck 0.3.3", "proc-macro-error", "proc-macro2", "quote", @@ -3152,7 +3158,7 @@ version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "339f799d8b549e3744c7ac7feb216383e4005d94bdb22561b3ab8f3b808ae9fb" dependencies = [ - "heck", + "heck 0.3.3", "proc-macro2", "quote", "syn", @@ -3164,7 +3170,20 @@ version = "0.23.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5bb0dc7ee9c15cea6199cde9a127fa16a4c5819af85395457ad72d68edc85a38" dependencies = [ - "heck", + "heck 0.3.3", + "proc-macro2", + "quote", + "rustversion", + "syn", +] + +[[package]] +name = "strum_macros" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6878079b17446e4d3eba6192bb0a2950d5b14f0ed8424b852310e5a94345d0ef" +dependencies = [ + "heck 0.4.0", "proc-macro2", "quote", "rustversion", diff --git a/Cargo.toml b/Cargo.toml index c44a2b0..87a6fde 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ clipboard = { version = "0.5", optional = true } wl-clipboard-rs = { version = "0.4", optional = true } url = "2.2" strum = "0.24.0" -strum_macros = "0.23.1" +strum_macros = "0.24.0" regex = "1" ioctl-rs = { version = "0.2", optional = true } serde_cbor = "0.11.2"