From 44b8e96362cacc3d48a8a765fdd2c7aeb4fe695d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 15:50:28 +0300 Subject: [PATCH] feat(deps): update rust crate anyhow to 1.0.75 (#372) chore(deps): update rust crate anyhow to 1.0.75 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- core/Cargo.toml | 2 +- crates/it-parser/Cargo.toml | 2 +- crates/js-backend/Cargo.toml | 2 +- crates/module-info-parser/Cargo.toml | 2 +- crates/module-interface/Cargo.toml | 2 +- crates/wasm-backend-traits/Cargo.toml | 2 +- crates/wasmtime-backend/Cargo.toml | 2 +- tools/cli/Cargo.toml | 2 +- tools/repl/Cargo.toml | 2 +- 10 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5c7493e29..7aa22d403 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -88,9 +88,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.73" +version = "1.0.75" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f768393e7fabd388fe8409b13faa4d93ab0fef35db1508438dfdb066918bcf38" +checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" [[package]] name = "arguments-passing-test" diff --git a/core/Cargo.toml b/core/Cargo.toml index f29dbbdd6..6bce59329 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -34,7 +34,7 @@ log = "0.4.20" paste = "1.0.14" -anyhow = "1.0.71" +anyhow = "1.0.75" thiserror = "1.0.50" [dev-dependencies] diff --git a/crates/it-parser/Cargo.toml b/crates/it-parser/Cargo.toml index 1e26d16ef..750c408fc 100644 --- a/crates/it-parser/Cargo.toml +++ b/crates/it-parser/Cargo.toml @@ -15,7 +15,7 @@ marine-it-interfaces = { path = "../it-interfaces", version = "0.8.1" } marine-module-interface = { path = "../module-interface", version = "0.7.1" } marine-wasm-backend-traits = { path = "../wasm-backend-traits", version = "0.3.0"} -anyhow = "1.0.71" +anyhow = "1.0.75" walrus = "0.20.1" wasmer-it = { package = "wasmer-interface-types-fl", version = "0.26.1" } nom = "7.1" diff --git a/crates/js-backend/Cargo.toml b/crates/js-backend/Cargo.toml index 3b3f24aa8..76df41240 100644 --- a/crates/js-backend/Cargo.toml +++ b/crates/js-backend/Cargo.toml @@ -14,7 +14,7 @@ wasm-bindgen = "0.2.84" serde-wasm-bindgen = "0.5.0" js-sys = "0.3.61" web-sys = { version = "0.3.61", features = ["console"] } -anyhow = "1.0.70" +anyhow = "1.0.75" paste = "1.0.14" maplit = "1.0.2" log = "0.4.20" diff --git a/crates/module-info-parser/Cargo.toml b/crates/module-info-parser/Cargo.toml index 84195cef3..a2ca7f04f 100644 --- a/crates/module-info-parser/Cargo.toml +++ b/crates/module-info-parser/Cargo.toml @@ -15,7 +15,7 @@ marine-rs-sdk-main = {version = "0.10.0", default-features = false } marine-wasm-backend-traits = { path = "../wasm-backend-traits", version = "0.3.0"} -anyhow = "1.0.71" +anyhow = "1.0.75" chrono = "0.4.31" walrus = "0.20.1" semver = "1.0.20" diff --git a/crates/module-interface/Cargo.toml b/crates/module-interface/Cargo.toml index 435423f95..4857f1201 100644 --- a/crates/module-interface/Cargo.toml +++ b/crates/module-interface/Cargo.toml @@ -13,7 +13,7 @@ path = "src/lib.rs" [dependencies] marine-it-interfaces = { path = "../it-interfaces", version = "0.8.1" } -anyhow = "1.0.71" +anyhow = "1.0.75" walrus = "0.20.1" wasmer-it = { package = "wasmer-interface-types-fl", version = "0.26.1" } nom = "7.1.3" diff --git a/crates/wasm-backend-traits/Cargo.toml b/crates/wasm-backend-traits/Cargo.toml index 0c97bba65..93f639e0c 100644 --- a/crates/wasm-backend-traits/Cargo.toml +++ b/crates/wasm-backend-traits/Cargo.toml @@ -11,7 +11,7 @@ wasmer-it = { package = "wasmer-interface-types-fl", version = "0.26.1" } it-memory-traits = "0.4.0" thiserror = "1.0.50" -anyhow = "1.0.71" +anyhow = "1.0.75" wasmparser = "0.101.1" paste = "1.0.14" multimap = "0.8.3" diff --git a/crates/wasmtime-backend/Cargo.toml b/crates/wasmtime-backend/Cargo.toml index 334a8cc77..f791d7362 100644 --- a/crates/wasmtime-backend/Cargo.toml +++ b/crates/wasmtime-backend/Cargo.toml @@ -16,5 +16,5 @@ wasmtime = {version = "6.0.1", default-features = false, features = ["cache", "w wasmtime-wasi = "6.0.1" multimap = "0.8.3" paste = "1.0.14" -anyhow = "1.0.71" +anyhow = "1.0.75" log = "0.4.20" diff --git a/tools/cli/Cargo.toml b/tools/cli/Cargo.toml index 917e9e601..6c8958d91 100644 --- a/tools/cli/Cargo.toml +++ b/tools/cli/Cargo.toml @@ -25,7 +25,7 @@ Inflector = "0.11.4" toml = "0.7.2" atty = "0.2.14" thiserror = "1.0.50" -anyhow = "1.0.71" +anyhow = "1.0.75" check-latest = { version = "1.0.1", optional = true } clap = "2.34.0" exitfailure = "0.5.1" diff --git a/tools/repl/Cargo.toml b/tools/repl/Cargo.toml index 61e966a4a..60cf0a054 100644 --- a/tools/repl/Cargo.toml +++ b/tools/repl/Cargo.toml @@ -16,7 +16,7 @@ fluence-app-service = { path = "../../crates/fluence-app-service", version = "0. marine-rs-sdk-main = { version = "0.10.0", default-features = false, features = ["logger"] } marine-wasm-backend-traits = {path = "../../crates/wasm-backend-traits", version = "0.3.0"} -anyhow = "1.0.71" +anyhow = "1.0.75" clap = "2.34.0" serde = "1.0.147" serde_json = "1.0.107"