From 3795eeeba2e4959ca2d4d93e0acbffc08b5a31d5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 30 Nov 2022 06:01:41 +0000 Subject: [PATCH] chore(deps): bump anyhow from 1.0.65 to 1.0.66 Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.65 to 1.0.66. - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.65...1.0.66) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 14 +++++++++++--- crates/youki/Cargo.toml | 4 ++-- .../test_framework/Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1e22f71352..4ba5223f7d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -48,9 +48,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.65" +version = "1.0.66" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98161a4e3e2184da77bb14f02184cdd111e83bbbcc9979dfee3c44b9a85f5602" +checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6" [[package]] name = "ascii" @@ -2769,6 +2769,8 @@ dependencies = [ [[package]] name = "wasmedge-macro" version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6f159a9a7d3d2301de2fc9cb88ad3459af9e95cbd5a0f57437efccc2b572a027" dependencies = [ "proc-macro2", "quote", @@ -2778,6 +2780,8 @@ dependencies = [ [[package]] name = "wasmedge-sdk" version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6b7678a024c25fbe7168dedbca6958b6baf5412a998c697bf40dbf359efc54e" dependencies = [ "anyhow", "num-derive", @@ -2791,7 +2795,9 @@ dependencies = [ [[package]] name = "wasmedge-sys" -version = "0.12.1" +version = "0.12.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00ab1f78c1d3de17fd0deff054de96e337cf8cf02d13651748bdfa1f1b219369" dependencies = [ "bindgen", "cmake", @@ -2809,6 +2815,8 @@ dependencies = [ [[package]] name = "wasmedge-types" version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3323fe75a4e65476b33a041092aac22a1065a7ba0bfecbedc8135e8efb6c522d" dependencies = [ "thiserror", "wat", diff --git a/crates/youki/Cargo.toml b/crates/youki/Cargo.toml index cfe6cb9568..56418b21ae 100644 --- a/crates/youki/Cargo.toml +++ b/crates/youki/Cargo.toml @@ -23,7 +23,7 @@ default-features = false features = ["std", "suggestions", "derive", "cargo"] [dependencies] -anyhow = "1.0.65" +anyhow = "1.0.66" chrono = { version = "0.4", features = ["serde"] } libcgroups = { version = "0.0.3", path = "../libcgroups", default-features = false } libcontainer = { version = "0.0.3", path = "../libcontainer", default-features = false } @@ -43,5 +43,5 @@ clap_complete = "3.2.5" serial_test = "0.9.0" [build-dependencies] -anyhow = "1.0.65" +anyhow = "1.0.66" vergen = "7.2.1" diff --git a/tests/rust-integration-tests/test_framework/Cargo.toml b/tests/rust-integration-tests/test_framework/Cargo.toml index 1fc3c66564..12aa67f541 100644 --- a/tests/rust-integration-tests/test_framework/Cargo.toml +++ b/tests/rust-integration-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.65" +anyhow = "1.0.66" crossbeam = "0.8.2"