From 17f1128a49c0ad25918ab2e4bedd8b68b5831339 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 23 Apr 2022 22:53:49 -0400 Subject: [PATCH] chore(deps): bump anyhow from 1.0.56 to 1.0.57 (#1050) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- apps/host/Cargo.toml | 2 +- apps/macros/Cargo.toml | 2 +- apps/sdk/Cargo.toml | 2 +- chain/Cargo.toml | 2 +- clients/android/Cargo.toml | 2 +- clients/web/Cargo.toml | 2 +- core/Cargo.toml | 2 +- discovery/Cargo.toml | 2 +- exo/Cargo.toml | 2 +- protos/Cargo.toml | 2 +- store/Cargo.toml | 2 +- transport/Cargo.toml | 2 +- 14 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 12febe29e..d588d8daa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -83,9 +83,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.56" +version = "1.0.57" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4361135be9122e0870de935d7c439aef945b9f9ddd4199a553b5270b49c82a27" +checksum = "08f9b8508dccb7687a1d6c4ce66b2b0ecef467c94667de27d8d7fe1f8d2a9cdc" [[package]] name = "arc-swap" diff --git a/Cargo.toml b/Cargo.toml index 6ac3d4ec0..1dee640f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ transport-p2p = ["exocore-transport/p2p-full"] transport-p2p-web = ["exocore-transport/p2p-web"] [dependencies] -anyhow = { version = "1.0.56", optional = true } +anyhow = { version = "1.0.57", optional = true } exocore-apps-sdk = {version = "0.1.21", path = "./apps/sdk", default-features = false, optional = true} exocore-chain = {version = "0.1.21", path = "./chain", default-features = false, optional = true} exocore-core = {version = "0.1.21", path = "./core", default-features = false, optional = true} diff --git a/apps/host/Cargo.toml b/apps/host/Cargo.toml index e2537c136..3b1b9c818 100644 --- a/apps/host/Cargo.toml +++ b/apps/host/Cargo.toml @@ -13,7 +13,7 @@ version = "0.1.21" default = [] [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.57" exocore-core = {version = "0.1.21", path = "../../core"} exocore-protos = {version = "0.1.21", path = "../../protos"} exocore-store = {version = "0.1.21", path = "../../store"} diff --git a/apps/macros/Cargo.toml b/apps/macros/Cargo.toml index 49ec637b8..5cfed5803 100644 --- a/apps/macros/Cargo.toml +++ b/apps/macros/Cargo.toml @@ -13,7 +13,7 @@ version = "0.1.21" proc-macro = true [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.57" futures = "0.3.21" log = "0.4.16" quote = "1.0.18" diff --git a/apps/sdk/Cargo.toml b/apps/sdk/Cargo.toml index 207e1a7cb..974e423cb 100644 --- a/apps/sdk/Cargo.toml +++ b/apps/sdk/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/appaquet/exocore" version = "0.1.21" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.57" exocore-apps-macros = {version = "0.1.21", path = "../macros"} exocore-protos = {version = "0.1.21", path = "../../protos"} exocore-store = {version = "0.1.21", path = "../../store", default-features = false} diff --git a/chain/Cargo.toml b/chain/Cargo.toml index 541860cd7..846a62672 100644 --- a/chain/Cargo.toml +++ b/chain/Cargo.toml @@ -18,7 +18,7 @@ mmap = ["memmap2"] tests-utils = ["engine", "tempfile", "directory-chain", "memory-pending", "exocore-core/tests-utils", "exocore-transport/tests-utils"] [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.57" byteorder = "1.4.3" exocore-core = {version = "0.1.21", path = "../core"} exocore-protos = {version = "0.1.21", path = "../protos"} diff --git a/clients/android/Cargo.toml b/clients/android/Cargo.toml index 83abd7bb3..80f0ccc2f 100644 --- a/clients/android/Cargo.toml +++ b/clients/android/Cargo.toml @@ -8,7 +8,7 @@ version = "0.1.21" crate-type = ["cdylib"] [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.57" exocore-core = {version = "0.1.21", path = "../../core", features = ["runtime", "logger"]} exocore-store = {version = "0.1.21", path = "../../store"} exocore-transport = {version = "0.1.21", path = "../../transport", features = ["p2p-full"]} diff --git a/clients/web/Cargo.toml b/clients/web/Cargo.toml index ac19a6a1f..dc23744b9 100644 --- a/clients/web/Cargo.toml +++ b/clients/web/Cargo.toml @@ -8,7 +8,7 @@ version = "0.1.21" crate-type = ["cdylib"] [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.57" console_error_panic_hook = "0.1.7" exocore-core = {version = "0.1.21", path = "../../core", default-features = false, features=["web"]} exocore-discovery = {version = "0.1.21", path = "../../discovery", default-features = false} diff --git a/core/Cargo.toml b/core/Cargo.toml index 185032a2d..f18a93c40 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -28,7 +28,7 @@ web = [ ] [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.57" bs58 = "0.4.0" byteorder = "1.4.3" bytes = "1.1.0" diff --git a/discovery/Cargo.toml b/discovery/Cargo.toml index eab38bc9f..8ad4a7d2a 100644 --- a/discovery/Cargo.toml +++ b/discovery/Cargo.toml @@ -14,7 +14,7 @@ default = ["server"] server = ["hyper", "tokio"] [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.57" base64 = "0.13.0" chrono = { version = "0.4.19", features = ["serde"] } futures = "0.3.21" diff --git a/exo/Cargo.toml b/exo/Cargo.toml index d04080b14..9aaad0a76 100644 --- a/exo/Cargo.toml +++ b/exo/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/appaquet/exocore" version = "0.1.21" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.57" bytes = "1.1.0" clap = { version = "3.1.12", features = ["derive", "env"] } console = "0.15.0" diff --git a/protos/Cargo.toml b/protos/Cargo.toml index 62910c0f6..9db8a78f7 100644 --- a/protos/Cargo.toml +++ b/protos/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/appaquet/exocore" version = "0.1.21" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.57" base64 = "0.13.0" capnp = { version = "0.14.6", features = ["sync_reader"] } chrono = "0.4.19" diff --git a/store/Cargo.toml b/store/Cargo.toml index 4e7fe0f1f..04c24e8a5 100644 --- a/store/Cargo.toml +++ b/store/Cargo.toml @@ -28,7 +28,7 @@ remote = ["exocore-core", "exocore-transport"] tests-utils = [] [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.57" async-trait = "0.1.53" bytes = "1.1.0" chrono = { version = "0.4.19", features = ["serde"] } diff --git a/transport/Cargo.toml b/transport/Cargo.toml index 4e39ccedf..cc2820224 100644 --- a/transport/Cargo.toml +++ b/transport/Cargo.toml @@ -18,7 +18,7 @@ p2p-web = ["p2p-base", "libp2p/wasm-ext-websocket", "libp2p/wasm-bindgen", "gloo tests-utils = ["exocore-core/tests-utils"] [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.57" byteorder = "1.4.3" bytes = "1.1.0" exocore-core = {version = "0.1.21", path = "../core"}