From a953575b24da496d4cd2df526d822ced558415c5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 27 Dec 2023 01:13:13 +0000 Subject: [PATCH] chore(deps): bump the patch group with 1 update Bumps the patch group with 1 update: [anyhow](https://github.com/dtolnay/anyhow). Updates `anyhow` from 1.0.76 to 1.0.77 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.76...1.0.77) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- crates/youki/Cargo.toml | 4 ++-- tests/test_framework/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cac5bc4a8..889e7484d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -135,9 +135,9 @@ checksum = "70033777eb8b5124a81a1889416543dddef2de240019b674c81285a2635a7e1e" [[package]] name = "anyhow" -version = "1.0.76" +version = "1.0.77" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59d2a3357dde987206219e78ecfbbb6e8dad06cbb65292758d3270e6254f7355" +checksum = "c9d19de80eff169429ac1e9f48fffb163916b448a44e8e046186232046d9e1f9" [[package]] name = "arbitrary" diff --git a/crates/youki/Cargo.toml b/crates/youki/Cargo.toml index 3a3b515e3..4b0079a2f 100644 --- a/crates/youki/Cargo.toml +++ b/crates/youki/Cargo.toml @@ -27,7 +27,7 @@ default-features = false features = ["std", "suggestions", "derive", "cargo", "help", "usage", "error-context"] [dependencies] -anyhow = "1.0.76" +anyhow = "1.0.77" 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.76" +anyhow = "1.0.77" vergen = { version = "8.2.6", features = ["git", "gitcl"] } diff --git a/tests/test_framework/Cargo.toml b/tests/test_framework/Cargo.toml index 6c511e9eb..a0a2632cf 100644 --- a/tests/test_framework/Cargo.toml +++ b/tests/test_framework/Cargo.toml @@ -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.76" +anyhow = "1.0.77" crossbeam = "0.8.3"