build(deps): bump the deps group with 2 updates (#1704)

Bumps the deps group with 2 updates: [itertools](https://github.com/rust-itertools/itertools) and [thiserror](https://github.com/dtolnay/thiserror).


Updates `itertools` from 0.12.1 to 0.13.0
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-itertools/itertools/compare/v0.12.1...v0.13.0)

Updates `thiserror` from 1.0.60 to 1.0.61
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](https://github.com/dtolnay/thiserror/compare/1.0.60...1.0.61)

---
updated-dependencies:
- dependency-name: itertools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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-05-18 13:28:12 +10:00 committed by GitHub
parent ec08340fc3
commit 45307909c3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 15 additions and 15 deletions

12
Cargo.lock generated
View file

@ -2402,9 +2402,9 @@ checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800"
[[package]] [[package]]
name = "itertools" name = "itertools"
version = "0.12.1" version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
dependencies = [ dependencies = [
"either", "either",
] ]
@ -3797,18 +3797,18 @@ dependencies = [
[[package]] [[package]]
name = "thiserror" name = "thiserror"
version = "1.0.60" version = "1.0.61"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "579e9083ca58dd9dcf91a9923bb9054071b9ebbd800b342194c9feb0ee89fc18" checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709"
dependencies = [ dependencies = [
"thiserror-impl", "thiserror-impl",
] ]
[[package]] [[package]]
name = "thiserror-impl" name = "thiserror-impl"
version = "1.0.60" version = "1.0.61"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2470041c06ec3ac1ab38d0356a6119054dedaea53e12fbefc0de730a1c08524" checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",

View file

@ -17,5 +17,5 @@ compact_str = { version = "0.7.0", features = ["serde"] }
leon = "3.0.0" leon = "3.0.0"
miette = "7.0.0" miette = "7.0.0"
normalize-path = { version = "0.2.1", path = "../normalize-path" } normalize-path = { version = "0.2.1", path = "../normalize-path" }
thiserror = "1.0.52" thiserror = "1.0.61"
tracing = "0.1.39" tracing = "0.1.39"

View file

@ -53,7 +53,7 @@ serde_json = { version = "1.0.107", optional = true }
#tar = "0.4.38" #tar = "0.4.38"
tar = { package = "binstall-tar", version = "0.4.39" } tar = { package = "binstall-tar", version = "0.4.39" }
tempfile = "3.5.0" tempfile = "3.5.0"
thiserror = "1.0.52" thiserror = "1.0.61"
tokio = { version = "1.35.0", features = [ tokio = { version = "1.35.0", features = [
"macros", "macros",
"rt-multi-thread", "rt-multi-thread",

View file

@ -17,14 +17,14 @@ binstalk-types = { version = "0.7.0", path = "../binstalk-types" }
bytes = "1.4.0" bytes = "1.4.0"
compact_str = { version = "0.7.0" } compact_str = { version = "0.7.0" }
either = "1.11.0" either = "1.11.0"
itertools = "0.12.0" itertools = "0.13.0"
leon = "3.0.0" leon = "3.0.0"
leon-macros = "1.0.1" leon-macros = "1.0.1"
miette = "7.0.0" miette = "7.0.0"
minisign-verify = "0.2.1" minisign-verify = "0.2.1"
once_cell = "1.18.0" once_cell = "1.18.0"
strum = "0.26.1" strum = "0.26.1"
thiserror = "1.0.52" thiserror = "1.0.61"
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"
url = "2.3.1" url = "2.3.1"

View file

@ -20,7 +20,7 @@ semver = { version = "1.0.17", features = ["serde"] }
serde = { version = "1.0.163", features = ["derive"] } serde = { version = "1.0.163", features = ["derive"] }
serde-tuple-vec-map = "1.0.1" serde-tuple-vec-map = "1.0.1"
serde_json = "1.0.107" serde_json = "1.0.107"
thiserror = "1.0.52" thiserror = "1.0.61"
toml_edit = { version = "0.22.12", features = ["serde"] } toml_edit = { version = "0.22.12", features = ["serde"] }
url = { version = "2.3.1", features = ["serde"] } url = { version = "2.3.1", features = ["serde"] }

View file

@ -29,7 +29,7 @@ serde_json = "1.0.107"
sha2 = "0.10.7" sha2 = "0.10.7"
simple-git = { version = "0.2.4", optional = true } simple-git = { version = "0.2.4", optional = true }
tempfile = "3.5.0" tempfile = "3.5.0"
thiserror = "1.0.52" thiserror = "1.0.61"
tokio = { version = "1.35.0", features = [ tokio = { version = "1.35.0", features = [
"rt", "rt",
"sync", "sync",

View file

@ -26,7 +26,7 @@ detect-targets = { version = "0.1.17", path = "../detect-targets", features = [
"tracing", "tracing",
] } ] }
either = "1.11.0" either = "1.11.0"
itertools = "0.12.0" itertools = "0.13.0"
jobslot = { version = "0.2.11", features = ["tokio"] } jobslot = { version = "0.2.11", features = ["tokio"] }
leon = "3.0.0" leon = "3.0.0"
maybe-owned = "0.3.4" maybe-owned = "0.3.4"
@ -36,7 +36,7 @@ simple-git = { version = "0.2.4", optional = true }
strum = "0.26.1" 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.61"
tokio = { version = "1.35.0", features = [ tokio = { version = "1.35.0", features = [
"rt", "rt",
"process", "process",

View file

@ -15,7 +15,7 @@ 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" }
serde = "1.0.163" serde = "1.0.163"
thiserror = "1.0.52" thiserror = "1.0.61"
tracing = "0.1.39" tracing = "0.1.39"
[dev-dependencies] [dev-dependencies]