build(deps): bump the deps group with 3 updates (#1530)

Bumps the deps group with 3 updates: [file-format](https://github.com/mmalecot/file-format), [home](https://github.com/rust-lang/cargo) and [thiserror](https://github.com/dtolnay/thiserror).


Updates `file-format` from 0.22.0 to 0.23.0
- [Release notes](https://github.com/mmalecot/file-format/releases)
- [Changelog](https://github.com/mmalecot/file-format/blob/main/CHANGELOG.md)
- [Commits](https://github.com/mmalecot/file-format/compare/v0.22.0...v0.23.0)

Updates `home` from 0.5.5 to 0.5.9
- [Changelog](https://github.com/rust-lang/cargo/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/cargo/commits)

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

---
updated-dependencies:
- dependency-name: file-format
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: home
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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] 2023-12-16 01:15:39 +00:00 committed by GitHub
parent b296ac5315
commit f23a619a61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 21 additions and 21 deletions

18
Cargo.lock generated
View file

@ -1002,9 +1002,9 @@ checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
[[package]]
name = "file-format"
version = "0.22.0"
version = "0.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fcb859e047d667f798f913a2cd0d5c214b85944d1191efa8146c98888fc557b"
checksum = "865ed54301d7e5136763302a3c9e595317e08a3119e19a078ab1ed269eb18edc"
[[package]]
name = "filetime"
@ -2091,11 +2091,11 @@ dependencies = [
[[package]]
name = "home"
version = "0.5.5"
version = "0.5.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
dependencies = [
"windows-sys 0.48.0",
"windows-sys 0.52.0",
]
[[package]]
@ -3621,18 +3621,18 @@ dependencies = [
[[package]]
name = "thiserror"
version = "1.0.50"
version = "1.0.51"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2"
checksum = "f11c217e1416d6f036b870f14e0413d480dbf28edbee1f877abaf0206af43bb7"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.50"
version = "1.0.51"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8"
checksum = "01742297787513b79cf8e29d1056ede1313e2420b7b3b15d0a768b4921f549df"
dependencies = [
"proc-macro2",
"quote",

View file

@ -27,8 +27,8 @@ binstalk-manifests = { path = "../binstalk-manifests", version = "0.11.0" }
clap = { version = "4.4.8", features = ["derive", "env"] }
compact_str = "0.7.0"
dirs = "5.0.1"
file-format = { version = "0.22.0", default-features = false }
home = "0.5.5"
file-format = { version = "0.23.0", default-features = false }
home = "0.5.9"
log = { version = "0.4.18", features = ["std"] }
miette = "5.9.0"
mimalloc = { version = "0.1.39", default-features = false, optional = true }

View file

@ -17,5 +17,5 @@ compact_str = { version = "0.7.0", features = ["serde"] }
leon = { version = "2.0.1", path = "../leon" }
miette = "5.9.0"
normalize-path = { version = "0.2.1", path = "../normalize-path" }
thiserror = "1.0.40"
thiserror = "1.0.51"
tracing = "0.1.39"

View file

@ -31,7 +31,7 @@ serde_json = { version = "1.0.107", optional = true }
#tar = "0.4.38"
tar = { package = "binstall-tar", version = "0.4.39" }
tempfile = "3.5.0"
thiserror = "1.0.40"
thiserror = "1.0.51"
tokio = { version = "1.35.0", features = ["macros", "rt-multi-thread", "sync", "time", "fs"], default-features = false }
tokio-tar = "0.3.0"
tokio-util = { version = "0.7.8", features = ["io"] }

View file

@ -24,7 +24,7 @@ miette = "5.9.0"
minisign-verify = "0.2.1"
once_cell = "1.18.0"
strum = "0.25.0"
thiserror = "1.0.40"
thiserror = "1.0.51"
tokio = { version = "1.35.0", features = ["rt", "sync"], default-features = false }
tracing = "0.1.39"
url = "2.3.1"

View file

@ -14,13 +14,13 @@ beef = { version = "0.5.2", features = ["impl_serde"] }
binstalk-types = { version = "0.6.1", path = "../binstalk-types" }
compact_str = { version = "0.7.0", features = ["serde"] }
fs-lock = { version = "0.1.2", path = "../fs-lock" }
home = "0.5.5"
home = "0.5.9"
miette = "5.9.0"
semver = { version = "1.0.17", features = ["serde"] }
serde = { version = "1.0.163", features = ["derive"] }
serde-tuple-vec-map = "1.0.1"
serde_json = "1.0.107"
thiserror = "1.0.40"
thiserror = "1.0.51"
toml_edit = { version = "0.21.0", features = ["serde"] }
url = { version = "2.3.1", features = ["serde"] }

View file

@ -27,7 +27,7 @@ serde_json = "1.0.107"
sha2 = "0.10.7"
simple-git = { version = "0.2.0", path = "../simple-git", optional = true }
tempfile = "3.5.0"
thiserror = "1.0.40"
thiserror = "1.0.51"
tokio = { version = "1.35.0", features = ["rt", "sync"], default-features = false }
tracing = "0.1.39"
url = "2.3.1"

View file

@ -30,7 +30,7 @@ simple-git = { version = "0.2.0", path = "../simple-git", optional = true }
strum = "0.25.0"
target-lexicon = { version = "0.12.11", features = ["std"] }
tempfile = "3.5.0"
thiserror = "1.0.40"
thiserror = "1.0.51"
tokio = { version = "1.35.0", features = ["rt", "process", "sync"], default-features = false }
tracing = "0.1.39"
url = { version = "2.3.1", features = ["serde"] }

View file

@ -15,7 +15,7 @@ compact_str = { version = "0.7.0", features = ["serde"] }
glob = "0.3.1"
normalize-path = { version = "0.2.1", path = "../normalize-path" }
serde = "1.0.163"
thiserror = "1.0.40"
thiserror = "1.0.51"
tracing = "0.1.39"
[dev-dependencies]

View file

@ -13,7 +13,7 @@ exclude = ["fuzz", "benches"]
[dependencies]
clap = { version = "4.4.8", features = ["derive"], optional = true }
miette = { version = "5.9.0", default-features = false, optional = true }
thiserror = "1.0.38"
thiserror = "1.0.51"
[features]
default = ["miette"]

View file

@ -13,7 +13,7 @@ license = "Apache-2.0 OR MIT"
[dependencies]
compact_str = "0.7.0"
derive_destructure2 = "0.1"
thiserror = "1.0.40"
thiserror = "1.0.51"
tokio = { version = "1.35.0", features = ["rt", "time"], default-features = false }
tracing = "0.1.39"