From 923c317bd4a8ef0142a4cc600ba332baca466fc2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 3 Feb 2024 12:47:42 +1000 Subject: [PATCH] build(deps): bump the deps group with 3 updates (#1596) Bumps the deps group with 3 updates: [strum](https://github.com/Peternator7/strum), [strum_macros](https://github.com/Peternator7/strum) and [cargo_toml](https://gitlab.com/lib.rs/cargo_toml). Updates `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) Updates `strum_macros` from 0.25.3 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) Updates `cargo_toml` from 0.18.0 to 0.19.1 - [Commits](https://gitlab.com/lib.rs/cargo_toml/commits/main) --- updated-dependencies: - dependency-name: strum dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps - dependency-name: strum_macros dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps - dependency-name: cargo_toml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 12 ++++++------ crates/bin/Cargo.toml | 4 ++-- crates/binstalk-fetchers/Cargo.toml | 2 +- crates/binstalk-types/Cargo.toml | 4 ++-- crates/binstalk/Cargo.toml | 2 +- crates/cargo-toml-workspace/Cargo.toml | 2 +- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 66bed0dda..2a6fc6d5f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -575,9 +575,9 @@ dependencies = [ [[package]] name = "cargo_toml" -version = "0.18.0" +version = "0.19.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "802b755090e39835a4b0440fb0bbee0df7495a8b337f63db21e616f7821c7e8c" +checksum = "3dc9f7a067415ab5058020f04c60ec7b557084dbec0e021217bbabc7a8d38d14" dependencies = [ "serde", "toml", @@ -3585,15 +3585,15 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" [[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" [[package]] name = "strum_macros" -version = "0.25.3" +version = "0.26.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0" +checksum = "7a3417fc93d76740d974a01654a09777cb500428cc874ca9f45edfe0c4d4cd18" dependencies = [ "heck", "proc-macro2", diff --git a/crates/bin/Cargo.toml b/crates/bin/Cargo.toml index ba5f0863c..5b6cdbcc2 100644 --- a/crates/bin/Cargo.toml +++ b/crates/bin/Cargo.toml @@ -34,8 +34,8 @@ miette = "5.9.0" mimalloc = { version = "0.1.39", default-features = false, optional = true } once_cell = "1.18.0" semver = "1.0.17" -strum = "0.25.0" -strum_macros = "0.25.0" +strum = "0.26.1" +strum_macros = "0.26.1" supports-color = "2.0.0" tempfile = "3.5.0" tokio = { version = "1.35.0", features = ["rt-multi-thread", "signal"], default-features = false } diff --git a/crates/binstalk-fetchers/Cargo.toml b/crates/binstalk-fetchers/Cargo.toml index 39981dee3..42aa5a14d 100644 --- a/crates/binstalk-fetchers/Cargo.toml +++ b/crates/binstalk-fetchers/Cargo.toml @@ -23,7 +23,7 @@ leon-macros = { version = "1.0.0", path = "../leon-macros" } miette = "5.9.0" minisign-verify = "0.2.1" once_cell = "1.18.0" -strum = "0.25.0" +strum = "0.26.1" thiserror = "1.0.52" tokio = { version = "1.35.0", features = ["rt", "sync"], default-features = false } tracing = "0.1.39" diff --git a/crates/binstalk-types/Cargo.toml b/crates/binstalk-types/Cargo.toml index 6c1b168b6..1de7953f5 100644 --- a/crates/binstalk-types/Cargo.toml +++ b/crates/binstalk-types/Cargo.toml @@ -15,6 +15,6 @@ maybe-owned = { version = "0.3.4", features = ["serde"] } once_cell = "1.18.0" semver = { version = "1.0.17", features = ["serde"] } serde = { version = "1.0.163", features = ["derive"] } -strum = "0.25.0" -strum_macros = "0.25.0" +strum = "0.26.1" +strum_macros = "0.26.1" url = { version = "2.3.1", features = ["serde"] } diff --git a/crates/binstalk/Cargo.toml b/crates/binstalk/Cargo.toml index b39784eda..3f15c22c7 100644 --- a/crates/binstalk/Cargo.toml +++ b/crates/binstalk/Cargo.toml @@ -27,7 +27,7 @@ maybe-owned = "0.3.4" miette = "5.9.0" semver = { version = "1.0.17", features = ["serde"] } simple-git = { version = "0.2.2", path = "../simple-git", optional = true } -strum = "0.25.0" +strum = "0.26.1" target-lexicon = { version = "0.12.11", features = ["std"] } tempfile = "3.5.0" thiserror = "1.0.52" diff --git a/crates/cargo-toml-workspace/Cargo.toml b/crates/cargo-toml-workspace/Cargo.toml index 87062c4d1..fa3d9c9ee 100644 --- a/crates/cargo-toml-workspace/Cargo.toml +++ b/crates/cargo-toml-workspace/Cargo.toml @@ -10,7 +10,7 @@ authors = ["Jiahao XU "] license = "Apache-2.0 OR MIT" [dependencies] -cargo_toml = "0.18.0" +cargo_toml = "0.19.1" compact_str = { version = "0.7.0", features = ["serde"] } glob = "0.3.1" normalize-path = { version = "0.2.1", path = "../normalize-path" }