diff --git a/Cargo.lock b/Cargo.lock index f93b2c16b..8d6bfd1a5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -121,9 +121,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.100" +version = "1.0.101" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" +checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea" [[package]] name = "arbitrary" diff --git a/src/hyperlight_common/Cargo.toml b/src/hyperlight_common/Cargo.toml index 7e61c4428..7b6ded9c5 100644 --- a/src/hyperlight_common/Cargo.toml +++ b/src/hyperlight_common/Cargo.toml @@ -16,7 +16,7 @@ workspace = true [dependencies] flatbuffers = { version = "25.12.19", default-features = false } -anyhow = { version = "1.0.100", default-features = false } +anyhow = { version = "1.0.101", default-features = false } log = "0.4.29" tracing = { version = "0.1.44", optional = true } arbitrary = {version = "1.4.2", optional = true, features = ["derive"]} diff --git a/src/hyperlight_guest/Cargo.toml b/src/hyperlight_guest/Cargo.toml index 806ee5a42..126738b84 100644 --- a/src/hyperlight_guest/Cargo.toml +++ b/src/hyperlight_guest/Cargo.toml @@ -12,7 +12,7 @@ Provides only the essential building blocks for interacting with the host enviro """ [dependencies] -anyhow = { version = "1.0.100", default-features = false } +anyhow = { version = "1.0.101", default-features = false } serde_json = { version = "1.0", default-features = false, features = ["alloc"] } hyperlight-common = { workspace = true, default-features = false } flatbuffers = { version= "25.12.19", default-features = false } diff --git a/src/hyperlight_host/Cargo.toml b/src/hyperlight_host/Cargo.toml index b36b843e8..eb9180ceb 100644 --- a/src/hyperlight_host/Cargo.toml +++ b/src/hyperlight_host/Cargo.toml @@ -116,7 +116,7 @@ windows = { version = "0.62", features = [ proc-maps = "0.4.0" [build-dependencies] -anyhow = { version = "1.0.100" } +anyhow = { version = "1.0.101" } cfg_aliases = "0.2.1" built = { version = "0.8.0", optional = true, features = ["chrono", "git2"] } diff --git a/src/hyperlight_testing/Cargo.toml b/src/hyperlight_testing/Cargo.toml index 7a64036c2..ef2b3feb8 100644 --- a/src/hyperlight_testing/Cargo.toml +++ b/src/hyperlight_testing/Cargo.toml @@ -3,7 +3,7 @@ name = "hyperlight-testing" edition = "2021" [dependencies] -anyhow = "1.0.100" +anyhow = "1.0.101" log = "0.4" once_cell = "1.21" tracing = { version = "0.1.44", features = ["log"] }