From 865c3d088e4e14945366f158017dbe94de0fdd2c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 20:28:22 +0000 Subject: [PATCH] chore(deps): bump thiserror from 1.0.49 to 1.0.50 Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.49 to 1.0.50. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- 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 +- 13 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ebc7d50f0..a9806f68e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5319,18 +5319,18 @@ checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" [[package]] name = "thiserror" -version = "1.0.49" +version = "1.0.50" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1177e8c6d7ede7afde3585fd2513e611227efd6481bd78d2e82ba1ce16557ed4" +checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.49" +version = "1.0.50" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10712f02019e9288794769fba95cd6847df9874d49d871d062172f9dd41bc4cc" +checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8" dependencies = [ "proc-macro2", "quote", diff --git a/apps/host/Cargo.toml b/apps/host/Cargo.toml index 164fc7235..e1af559cc 100644 --- a/apps/host/Cargo.toml +++ b/apps/host/Cargo.toml @@ -20,7 +20,7 @@ exocore-store = {version = "0.1.25", path = "../../store"} futures = "0.3.28" log = "0.4.20" reqwest = { version = "0.11.22", default-features = false, features = ["rustls-tls"] } -thiserror = "1.0.49" +thiserror = "1.0.50" [target."cfg(any( all(target_arch = \"x86_64\", any(target_os = \"linux\", target_os = \"macos\", target_os = \"windows\")), all(target_arch = \"aarch64\", any(target_os = \"linux\", target_os = \"macos\")) ))".dependencies] wasmtime = "4.0.1" diff --git a/apps/macros/Cargo.toml b/apps/macros/Cargo.toml index 58208de81..cb79d6d08 100644 --- a/apps/macros/Cargo.toml +++ b/apps/macros/Cargo.toml @@ -18,4 +18,4 @@ futures = "0.3.28" log = "0.4.20" quote = "1.0.33" syn = { version = "2.0.38", features = ["full", "fold"] } -thiserror = "1.0.49" +thiserror = "1.0.50" diff --git a/apps/sdk/Cargo.toml b/apps/sdk/Cargo.toml index 3749a0659..63a5a4bb0 100644 --- a/apps/sdk/Cargo.toml +++ b/apps/sdk/Cargo.toml @@ -18,7 +18,7 @@ futures = "0.3.28" lazy_static = "1.4.0" log = "0.4.20" quote = "1.0.33" -thiserror = "1.0.49" +thiserror = "1.0.50" chrono = { version = "0.4.31", default-features = false, features = [] } [dev-dependencies] diff --git a/chain/Cargo.toml b/chain/Cargo.toml index 300ab6de4..c92701cb3 100644 --- a/chain/Cargo.toml +++ b/chain/Cargo.toml @@ -27,7 +27,7 @@ futures = "0.3.28" itertools = "0.11.0" log = "0.4.20" serde = { version = "1.0.189", features = ["derive"] } -thiserror = "1.0.49" +thiserror = "1.0.50" bytes = "1.5.0" # For directory chain diff --git a/clients/android/Cargo.toml b/clients/android/Cargo.toml index a42808f90..b7401d6db 100644 --- a/clients/android/Cargo.toml +++ b/clients/android/Cargo.toml @@ -12,4 +12,4 @@ anyhow = "1.0.75" 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"]} -thiserror = "1.0.49" +thiserror = "1.0.50" diff --git a/clients/web/Cargo.toml b/clients/web/Cargo.toml index 336e833bf..b0a9b9728 100644 --- a/clients/web/Cargo.toml +++ b/clients/web/Cargo.toml @@ -18,7 +18,7 @@ exocore-transport = {version = "0.1.25", path = "../../transport", default-featu futures = "0.3.28" js-sys = "0.3.64" log = "0.4.20" -thiserror = "1.0.49" +thiserror = "1.0.50" wasm-bindgen = { version = "0.2.87", features = ["serde-serialize"] }# serde for serialization from JsValue wasm-bindgen-futures = "0.4.37" wasm-logger = "0.2.0" diff --git a/core/Cargo.toml b/core/Cargo.toml index c784fa4f1..42de52aef 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -49,7 +49,7 @@ serde_derive = "1.0.188" serde_json = "1.0.107" serde_yaml = "0.9.25" shadow-rs = { version = "0.24.1", default-features = false } -thiserror = "1.0.49" +thiserror = "1.0.50" url = "2.4.1" uuid = { version = "1.4.1", features = ["v4", "wasm-bindgen"] } wasm-timer = "0.2.5" diff --git a/discovery/Cargo.toml b/discovery/Cargo.toml index 044433c7b..475f2b1b7 100644 --- a/discovery/Cargo.toml +++ b/discovery/Cargo.toml @@ -24,7 +24,7 @@ reqwest = { version = "0.11.22", default-features = false, features = ["json", " serde = "1.0.189" serde_derive = "1.0.188" serde_json = "1.0.107" -thiserror = "1.0.49" +thiserror = "1.0.50" wasm-timer = "0.2.5" # For server diff --git a/exo/Cargo.toml b/exo/Cargo.toml index 9ab00c58a..281e8d811 100644 --- a/exo/Cargo.toml +++ b/exo/Cargo.toml @@ -33,7 +33,7 @@ serde = "1.0.189" serde_derive = "1.0.188" serde_json = "1.0.107" tempfile = "3.8.0" -thiserror = "1.0.49" +thiserror = "1.0.50" tokio = { version = "1.33.0", features = ["macros"], default-features = false } url = "2.4.1" zip = { version = "0.6.6", features = ["deflate"], default-features = false } diff --git a/protos/Cargo.toml b/protos/Cargo.toml index 370cd853a..da11c66af 100644 --- a/protos/Cargo.toml +++ b/protos/Cargo.toml @@ -20,7 +20,7 @@ protobuf = "3.3.0" serde = "1.0.189" serde_derive = "1.0.188" serde_json = "1.0.107" -thiserror = "1.0.49" +thiserror = "1.0.50" [build-dependencies] capnpc = "0.18" diff --git a/store/Cargo.toml b/store/Cargo.toml index 18bb1d08e..e26a554c8 100644 --- a/store/Cargo.toml +++ b/store/Cargo.toml @@ -37,7 +37,7 @@ futures = "0.3.28" itertools = "0.11.0" log = "0.4.20" smallvec = "1.11.1" -thiserror = "1.0.49" +thiserror = "1.0.50" # local or remote exocore-chain = {version = "0.1.25", path = "../chain", default-features = false, optional = true} diff --git a/transport/Cargo.toml b/transport/Cargo.toml index 937ed9040..5b880226f 100644 --- a/transport/Cargo.toml +++ b/transport/Cargo.toml @@ -31,7 +31,7 @@ libp2p-identity = { version = "0.2.6", features = ["secp256k1", "ed25519"], defa libp2p-mplex = {version = "0.40.0", optional = true} log = "0.4.20" pin-project = "1.1.3" -thiserror = "1.0.49" +thiserror = "1.0.50" url = {version = "2.4.1", optional = true} [dev-dependencies]