diff --git a/Cargo.lock b/Cargo.lock index 153a79160..be951fe45 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -185,9 +185,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.81" +version = "1.0.82" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0952808a6c2afd1aa8947271f3a60f1a6763c7b912d210184c5149b5cf147247" +checksum = "f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519" dependencies = [ "backtrace", ] diff --git a/Cargo.toml b/Cargo.toml index 30828e0e8..5e079c08f 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.81", optional = true } +anyhow = { version = "1.0.82", optional = true } exocore-apps-sdk = {version = "0.1.25", path = "./apps/sdk", default-features = false, optional = true} exocore-chain = {version = "0.1.25", path = "./chain", default-features = false, optional = true} exocore-core = {version = "0.1.25", path = "./core", default-features = false, optional = true} diff --git a/apps/host/Cargo.toml b/apps/host/Cargo.toml index 006d5e5f4..496bc44f8 100644 --- a/apps/host/Cargo.toml +++ b/apps/host/Cargo.toml @@ -13,7 +13,7 @@ version = "0.1.25" default = [] [dependencies] -anyhow = "1.0.81" +anyhow = "1.0.82" exocore-core = {version = "0.1.25", path = "../../core"} exocore-protos = {version = "0.1.25", path = "../../protos"} exocore-store = {version = "0.1.25", path = "../../store"} diff --git a/apps/macros/Cargo.toml b/apps/macros/Cargo.toml index 393218131..8eddb0dd6 100644 --- a/apps/macros/Cargo.toml +++ b/apps/macros/Cargo.toml @@ -13,7 +13,7 @@ version = "0.1.25" proc-macro = true [dependencies] -anyhow = "1.0.81" +anyhow = "1.0.82" futures = "0.3.30" log = "0.4.21" quote = "1.0.35" diff --git a/apps/sdk/Cargo.toml b/apps/sdk/Cargo.toml index 907dbb39d..710abf759 100644 --- a/apps/sdk/Cargo.toml +++ b/apps/sdk/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/appaquet/exocore" version = "0.1.25" [dependencies] -anyhow = "1.0.81" +anyhow = "1.0.82" exocore-apps-macros = {version = "0.1.25", path = "../macros"} exocore-protos = {version = "0.1.25", path = "../../protos"} exocore-store = {version = "0.1.25", path = "../../store", default-features = false} diff --git a/chain/Cargo.toml b/chain/Cargo.toml index f85bb4ea0..fc6e2820e 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.81" +anyhow = "1.0.82" byteorder = "1.5.0" exocore-core = {version = "0.1.25", path = "../core"} exocore-protos = {version = "0.1.25", path = "../protos"} diff --git a/clients/android/Cargo.toml b/clients/android/Cargo.toml index da36d187a..26def46a9 100644 --- a/clients/android/Cargo.toml +++ b/clients/android/Cargo.toml @@ -8,7 +8,7 @@ version = "0.1.25" crate-type = ["cdylib"] [dependencies] -anyhow = "1.0.81" +anyhow = "1.0.82" exocore-core = {version = "0.1.25", path = "../../core", features = ["runtime", "logger"]} exocore-store = {version = "0.1.25", path = "../../store"} exocore-transport = {version = "0.1.25", path = "../../transport", features = ["p2p-full"]} diff --git a/clients/web/Cargo.toml b/clients/web/Cargo.toml index 7a1864e58..3da41adb1 100644 --- a/clients/web/Cargo.toml +++ b/clients/web/Cargo.toml @@ -8,7 +8,7 @@ version = "0.1.25" crate-type = ["cdylib"] [dependencies] -anyhow = "1.0.81" +anyhow = "1.0.82" console_error_panic_hook = "0.1.7" exocore-core = {version = "0.1.25", path = "../../core", default-features = false, features=["web"]} exocore-discovery = {version = "0.1.25", path = "../../discovery", default-features = false} diff --git a/core/Cargo.toml b/core/Cargo.toml index 77cc5ad9a..5f8ac951a 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -28,7 +28,7 @@ web = [ ] [dependencies] -anyhow = "1.0.81" +anyhow = "1.0.82" bs58 = "0.5.1" byteorder = "1.5.0" bytes = "1.6.0" diff --git a/discovery/Cargo.toml b/discovery/Cargo.toml index e0af859fc..102d4aae8 100644 --- a/discovery/Cargo.toml +++ b/discovery/Cargo.toml @@ -14,7 +14,7 @@ default = ["server"] server = ["hyper", "tokio"] [dependencies] -anyhow = "1.0.81" +anyhow = "1.0.82" base64 = "0.22.0" chrono = { version = "0.4.37", features = ["serde"] } futures = "0.3.30" diff --git a/exo/Cargo.toml b/exo/Cargo.toml index 0bd574b8d..bc8c8f8ff 100644 --- a/exo/Cargo.toml +++ b/exo/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/appaquet/exocore" version = "0.1.25" [dependencies] -anyhow = { version="1.0.81", features = ["backtrace"] } +anyhow = { version="1.0.82", features = ["backtrace"] } bytes = "1.6.0" clap = { version = "4.5.4", features = ["derive", "env"] } console = "0.15.8" diff --git a/protos/Cargo.toml b/protos/Cargo.toml index d3c31a6f0..e5f0c31aa 100644 --- a/protos/Cargo.toml +++ b/protos/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/appaquet/exocore" version = "0.1.25" [dependencies] -anyhow = "1.0.81" +anyhow = "1.0.82" base64 = "0.22" capnp = { version = "0.19", features = ["sync_reader"] } chrono = "0.4.37" diff --git a/store/Cargo.toml b/store/Cargo.toml index ca0699db0..618985dca 100644 --- a/store/Cargo.toml +++ b/store/Cargo.toml @@ -28,7 +28,7 @@ remote = ["exocore-core", "exocore-transport"] tests-utils = [] [dependencies] -anyhow = "1.0.81" +anyhow = "1.0.82" async-trait = "0.1.79" bytes = "1.6.0" chrono = {version = "0.4.37", features = ["serde"]} diff --git a/transport/Cargo.toml b/transport/Cargo.toml index c77a42542..f2d8148ef 100644 --- a/transport/Cargo.toml +++ b/transport/Cargo.toml @@ -18,7 +18,7 @@ p2p-web = ["p2p-base", "libp2p/websocket-websys", "libp2p/wasm-bindgen"] tests-utils = ["exocore-core/tests-utils"] [dependencies] -anyhow = "1.0.81" +anyhow = "1.0.82" byteorder = "1.5.0" bytes = "1.6.0" exocore-core = {version = "0.1.25", path = "../core"}