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] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2024-02-03 12:47:42 +10:00 committed by GitHub
parent c300d8cd35
commit 923c317bd4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 13 additions and 13 deletions

12
Cargo.lock generated
View file

@ -575,9 +575,9 @@ dependencies = [
[[package]] [[package]]
name = "cargo_toml" name = "cargo_toml"
version = "0.18.0" version = "0.19.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "802b755090e39835a4b0440fb0bbee0df7495a8b337f63db21e616f7821c7e8c" checksum = "3dc9f7a067415ab5058020f04c60ec7b557084dbec0e021217bbabc7a8d38d14"
dependencies = [ dependencies = [
"serde", "serde",
"toml", "toml",
@ -3585,15 +3585,15 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]] [[package]]
name = "strum" name = "strum"
version = "0.25.0" version = "0.26.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" checksum = "723b93e8addf9aa965ebe2d11da6d7540fa2283fcea14b3371ff055f7ba13f5f"
[[package]] [[package]]
name = "strum_macros" name = "strum_macros"
version = "0.25.3" version = "0.26.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0" checksum = "7a3417fc93d76740d974a01654a09777cb500428cc874ca9f45edfe0c4d4cd18"
dependencies = [ dependencies = [
"heck", "heck",
"proc-macro2", "proc-macro2",

View file

@ -34,8 +34,8 @@ miette = "5.9.0"
mimalloc = { version = "0.1.39", default-features = false, optional = true } mimalloc = { version = "0.1.39", default-features = false, optional = true }
once_cell = "1.18.0" once_cell = "1.18.0"
semver = "1.0.17" semver = "1.0.17"
strum = "0.25.0" strum = "0.26.1"
strum_macros = "0.25.0" strum_macros = "0.26.1"
supports-color = "2.0.0" supports-color = "2.0.0"
tempfile = "3.5.0" tempfile = "3.5.0"
tokio = { version = "1.35.0", features = ["rt-multi-thread", "signal"], default-features = false } tokio = { version = "1.35.0", features = ["rt-multi-thread", "signal"], default-features = false }

View file

@ -23,7 +23,7 @@ leon-macros = { version = "1.0.0", path = "../leon-macros" }
miette = "5.9.0" miette = "5.9.0"
minisign-verify = "0.2.1" minisign-verify = "0.2.1"
once_cell = "1.18.0" once_cell = "1.18.0"
strum = "0.25.0" strum = "0.26.1"
thiserror = "1.0.52" thiserror = "1.0.52"
tokio = { version = "1.35.0", features = ["rt", "sync"], default-features = false } tokio = { version = "1.35.0", features = ["rt", "sync"], default-features = false }
tracing = "0.1.39" tracing = "0.1.39"

View file

@ -15,6 +15,6 @@ maybe-owned = { version = "0.3.4", features = ["serde"] }
once_cell = "1.18.0" once_cell = "1.18.0"
semver = { version = "1.0.17", features = ["serde"] } semver = { version = "1.0.17", features = ["serde"] }
serde = { version = "1.0.163", features = ["derive"] } serde = { version = "1.0.163", features = ["derive"] }
strum = "0.25.0" strum = "0.26.1"
strum_macros = "0.25.0" strum_macros = "0.26.1"
url = { version = "2.3.1", features = ["serde"] } url = { version = "2.3.1", features = ["serde"] }

View file

@ -27,7 +27,7 @@ maybe-owned = "0.3.4"
miette = "5.9.0" miette = "5.9.0"
semver = { version = "1.0.17", features = ["serde"] } semver = { version = "1.0.17", features = ["serde"] }
simple-git = { version = "0.2.2", path = "../simple-git", optional = true } 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"] } target-lexicon = { version = "0.12.11", features = ["std"] }
tempfile = "3.5.0" tempfile = "3.5.0"
thiserror = "1.0.52" thiserror = "1.0.52"

View file

@ -10,7 +10,7 @@ authors = ["Jiahao XU <Jiahao_XU@outlook.com>"]
license = "Apache-2.0 OR MIT" license = "Apache-2.0 OR MIT"
[dependencies] [dependencies]
cargo_toml = "0.18.0" cargo_toml = "0.19.1"
compact_str = { version = "0.7.0", features = ["serde"] } compact_str = { version = "0.7.0", features = ["serde"] }
glob = "0.3.1" glob = "0.3.1"
normalize-path = { version = "0.2.1", path = "../normalize-path" } normalize-path = { version = "0.2.1", path = "../normalize-path" }