1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-18 05:26:13 +02:00

chore(deps): bump the patch group with 3 updates

Bumps the patch group with 3 updates: [anyhow](https://github.com/dtolnay/anyhow), [mockall](https://github.com/asomers/mockall) and [proc-macro2](https://github.com/dtolnay/proc-macro2).


Updates `anyhow` from 1.0.75 to 1.0.76
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.76)

Updates `mockall` from 0.12.0 to 0.12.1
- [Changelog](https://github.com/asomers/mockall/blob/master/CHANGELOG.md)
- [Commits](https://github.com/asomers/mockall/compare/v0.12.0...v0.12.1)

Updates `proc-macro2` from 1.0.70 to 1.0.71
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](https://github.com/dtolnay/proc-macro2/compare/1.0.70...1.0.71)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: mockall
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: proc-macro2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2023-12-22 01:35:20 +00:00 committed by GitHub
parent 85ec6d0fc0
commit 859b1d4132
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 12 additions and 12 deletions

16
Cargo.lock generated
View File

@ -135,9 +135,9 @@ checksum = "70033777eb8b5124a81a1889416543dddef2de240019b674c81285a2635a7e1e"
[[package]]
name = "anyhow"
version = "1.0.75"
version = "1.0.76"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
checksum = "59d2a3357dde987206219e78ecfbbb6e8dad06cbb65292758d3270e6254f7355"
[[package]]
name = "arbitrary"
@ -2161,9 +2161,9 @@ dependencies = [
[[package]]
name = "mockall"
version = "0.12.0"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a978c8292954bcb9347a4e28772c0a0621166a1598fc1be28ac0076a4bb810e"
checksum = "43766c2b5203b10de348ffe19f7e54564b64f3d6018ff7648d1e2d6d3a0f0a48"
dependencies = [
"cfg-if",
"downcast",
@ -2176,9 +2176,9 @@ dependencies = [
[[package]]
name = "mockall_derive"
version = "0.12.0"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad2765371d0978ba4ace4ebef047baa62fc068b431e468444b5610dd441c639b"
checksum = "af7cbce79ec385a1d4f54baa90a76401eb15d9cab93685f62e7e9f942aa00ae2"
dependencies = [
"cfg-if",
"proc-macro2",
@ -2677,9 +2677,9 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
[[package]]
name = "proc-macro2"
version = "1.0.70"
version = "1.0.71"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39278fbbf5fb4f646ce651690877f89d1c5811a3d4acb27700c1cb3cdb78fd3b"
checksum = "75cb1540fadbd5b8fbccc4dddad2734eba435053f725621c070711a14bb5f4b8"
dependencies = [
"unicode-ident",
]

View File

@ -36,7 +36,7 @@ tracing = { version = "0.1.40", features = ["attributes"] }
anyhow = "1.0"
oci-spec = { version = "~0.6.4", features = ["proptests", "runtime"] }
quickcheck = "1"
mockall = { version = "0.12.0", features = [] }
mockall = { version = "0.12.1", features = [] }
clap = "4.1.6"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

View File

@ -27,7 +27,7 @@ default-features = false
features = ["std", "suggestions", "derive", "cargo", "help", "usage", "error-context"]
[dependencies]
anyhow = "1.0.75"
anyhow = "1.0.76"
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
libcgroups = { path = "../libcgroups", default-features = false, version = "0.3.1" } # MARK: Version
libcontainer = { path = "../libcontainer", default-features = false, version = "0.3.1" } # MARK: Version
@ -56,5 +56,5 @@ tempfile = "3"
scopeguard = "1.2.0"
[build-dependencies]
anyhow = "1.0.75"
anyhow = "1.0.76"
vergen = { version = "8.2.6", features = ["git", "gitcl"] }

View File

@ -6,5 +6,5 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
anyhow = "1.0.76"
crossbeam = "0.8.2"