From 2cb180dfddb9be0046747e835acc9d179af67ba2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Aug 2022 01:42:40 +0000 Subject: [PATCH] chore(deps): bump thiserror from 1.0.31 to 1.0.32 Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.31 to 1.0.32. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.31...1.0.32) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 42 +++++++++++++++++++++++++++----------- 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 | 4 ++-- discovery/Cargo.toml | 2 +- exo/Cargo.toml | 4 ++-- protos/Cargo.toml | 2 +- store/Cargo.toml | 4 ++-- transport/Cargo.toml | 2 +- 13 files changed, 45 insertions(+), 27 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ee7880dcc..cf004e71e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -113,9 +113,9 @@ checksum = "e22d1f4b888c298a027c99dc9048015fac177587de20fc30232a057dfbe24a21" [[package]] name = "async-trait" -version = "0.1.56" +version = "0.1.57" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96cf8829f67d2eab0b2dfa42c5d0ef737e0724e4a82b01b3e292456202b19716" +checksum = "76464446b8bc32758d7e88ee1a804d9914cd9b1cb264c029899680b0be29826f" dependencies = [ "proc-macro2", "quote", @@ -1291,7 +1291,7 @@ dependencies = [ "serde", "serde_derive", "serde_json", - "serde_yaml", + "serde_yaml 0.9.4", "shadow-rs", "tempfile", "thiserror", @@ -1948,14 +1948,13 @@ dependencies = [ [[package]] name = "indicatif" -version = "0.16.2" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d207dc617c7a380ab07ff572a6e52fa202a2a8f355860ac9c38e23f8196be1b" +checksum = "fcc42b206e70d86ec03285b123e65a5458c92027d1fb2ae3555878b8113b3ddf" dependencies = [ "console", - "lazy_static", "number_prefix", - "regex", + "unicode-width", ] [[package]] @@ -2458,7 +2457,7 @@ dependencies = [ "serde", "serde-value", "serde_json", - "serde_yaml", + "serde_yaml 0.8.26", "thiserror", "thread-id", "typemap", @@ -3692,6 +3691,19 @@ dependencies = [ "yaml-rust", ] +[[package]] +name = "serde_yaml" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79b7c9017c64a49806c6e8df8ef99b92446d09c92457f85f91835b01a8064ae0" +dependencies = [ + "indexmap", + "itoa 1.0.2", + "ryu", + "serde", + "unsafe-libyaml", +] + [[package]] name = "sha-1" version = "0.9.8" @@ -4070,18 +4082,18 @@ checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb" [[package]] name = "thiserror" -version = "1.0.31" +version = "1.0.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a" +checksum = "f5f6586b7f764adc0231f4c79be7b920e766bb2f3e51b3661cdb263828f19994" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.31" +version = "1.0.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a" +checksum = "12bafc5b54507e0149cdf1b145a5d80ab80a90bcd9275df43d4fff68460f6c21" dependencies = [ "proc-macro2", "quote", @@ -4449,6 +4461,12 @@ dependencies = [ "traitobject", ] +[[package]] +name = "unsafe-libyaml" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "931179334a56395bcf64ba5e0ff56781381c1a5832178280c7d7f91d1679aeb0" + [[package]] name = "unsigned-varint" version = "0.7.1" diff --git a/apps/host/Cargo.toml b/apps/host/Cargo.toml index dfd3ffc7e..d88f76322 100644 --- a/apps/host/Cargo.toml +++ b/apps/host/Cargo.toml @@ -20,7 +20,7 @@ exocore-store = {version = "0.1.22", path = "../../store"} futures = "0.3.21" log = "0.4.17" reqwest = { version = "0.11.11", default-features = false, features = ["rustls-tls"] } -thiserror = "1.0.31" +thiserror = "1.0.32" [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 = "0.39.1" diff --git a/apps/macros/Cargo.toml b/apps/macros/Cargo.toml index be5f7509a..f03797e54 100644 --- a/apps/macros/Cargo.toml +++ b/apps/macros/Cargo.toml @@ -18,4 +18,4 @@ futures = "0.3.21" log = "0.4.17" quote = "1.0.20" syn = { version = "1.0.98", features = ["full", "fold"] } -thiserror = "1.0.31" +thiserror = "1.0.32" diff --git a/apps/sdk/Cargo.toml b/apps/sdk/Cargo.toml index a54ae8c80..ebedfc82a 100644 --- a/apps/sdk/Cargo.toml +++ b/apps/sdk/Cargo.toml @@ -18,7 +18,7 @@ futures = "0.3.21" lazy_static = "1.4.0" log = "0.4.17" quote = "1.0.20" -thiserror = "1.0.31" +thiserror = "1.0.32" chrono = "0.4.19" [dev-dependencies] diff --git a/chain/Cargo.toml b/chain/Cargo.toml index 1265754cb..295c25311 100644 --- a/chain/Cargo.toml +++ b/chain/Cargo.toml @@ -27,7 +27,7 @@ futures = "0.3.21" itertools = "0.10.3" log = "0.4.17" serde = { version = "1.0.140", features = ["derive"] } -thiserror = "1.0.31" +thiserror = "1.0.32" bytes = "1.2.0" # For directory chain diff --git a/clients/android/Cargo.toml b/clients/android/Cargo.toml index 3aff455e0..11a0b3534 100644 --- a/clients/android/Cargo.toml +++ b/clients/android/Cargo.toml @@ -12,4 +12,4 @@ anyhow = "1.0.58" exocore-core = {version = "0.1.22", path = "../../core", features = ["runtime", "logger"]} exocore-store = {version = "0.1.22", path = "../../store"} exocore-transport = {version = "0.1.22", path = "../../transport", features = ["p2p-full"]} -thiserror = "1.0.31" +thiserror = "1.0.32" diff --git a/clients/web/Cargo.toml b/clients/web/Cargo.toml index 2c2b455a5..faa9831b8 100644 --- a/clients/web/Cargo.toml +++ b/clients/web/Cargo.toml @@ -18,7 +18,7 @@ exocore-transport = {version = "0.1.22", path = "../../transport", default-featu futures = "0.3.21" js-sys = "0.3.58" log = "0.4.17" -thiserror = "1.0.31" +thiserror = "1.0.32" wasm-bindgen = { version = "0.2.82", features = ["serde-serialize"] }# serde for serialization from JsValue wasm-bindgen-futures = "0.4.31" wasm-logger = "0.2.0" diff --git a/core/Cargo.toml b/core/Cargo.toml index 4b9d9253e..81f258f80 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -44,9 +44,9 @@ rand = "0.8" serde = "1.0.140" serde_derive = "1.0.139" serde_json = "1.0.82" -serde_yaml = "0.8.26" +serde_yaml = "0.9.4" shadow-rs = { version = "0.16.1", default-features = false } -thiserror = "1.0.31" +thiserror = "1.0.32" url = "2.2.2" uuid = { version = "0.8.2", features = ["v4", "wasm-bindgen"] } wasm-timer = "0.2.5" diff --git a/discovery/Cargo.toml b/discovery/Cargo.toml index 8d744e71b..1e9dd4867 100644 --- a/discovery/Cargo.toml +++ b/discovery/Cargo.toml @@ -24,7 +24,7 @@ reqwest = { version = "0.11.11", default-features = false, features = ["json", " serde = "1.0.140" serde_derive = "1.0.139" serde_json = "1.0.82" -thiserror = "1.0.31" +thiserror = "1.0.32" wasm-timer = "0.2.5" # For server diff --git a/exo/Cargo.toml b/exo/Cargo.toml index aa3b2f078..8a3d2ccd2 100644 --- a/exo/Cargo.toml +++ b/exo/Cargo.toml @@ -24,7 +24,7 @@ exocore-protos = {version = "0.1.22", path = "../protos"} exocore-store = {version = "0.1.22", path = "../store"} exocore-transport = {version = "0.1.22", path = "../transport", features = ["http-server"]} futures = "0.3.21" -indicatif = "0.16.2" +indicatif = "0.17.0" log = "0.4.17" log4rs = "1.1.1" rand = "0.8" @@ -33,7 +33,7 @@ serde = "1.0.140" serde_derive = "1.0.139" serde_json = "1.0.82" tempfile = "3.3.0" -thiserror = "1.0.31" +thiserror = "1.0.32" tokio = { version = "1.20.1", features = ["macros"], default-features = false } url = "2.2.2" zip = { version = "0.6.2", features = ["deflate"], default-features = false } diff --git a/protos/Cargo.toml b/protos/Cargo.toml index 28f7abb4d..5e52c2165 100644 --- a/protos/Cargo.toml +++ b/protos/Cargo.toml @@ -20,7 +20,7 @@ protobuf = "3.1.0" serde = "1.0.140" serde_derive = "1.0.139" serde_json = "1.0.82" -thiserror = "1.0.31" +thiserror = "1.0.32" [build-dependencies] capnpc = "0.14.9" diff --git a/store/Cargo.toml b/store/Cargo.toml index c4845a0e3..ba9ae3419 100644 --- a/store/Cargo.toml +++ b/store/Cargo.toml @@ -29,7 +29,7 @@ tests-utils = [] [dependencies] anyhow = "1.0.58" -async-trait = "0.1.56" +async-trait = "0.1.57" bytes = "1.2.0" chrono = { version = "0.4.19", features = ["serde"] } exocore-protos = {version = "0.1.22", path = "../protos"} @@ -37,7 +37,7 @@ futures = "0.3.21" itertools = "0.10.3" log = "0.4.17" smallvec = "1.9.0" -thiserror = "1.0.31" +thiserror = "1.0.32" # local or remote exocore-chain = {version = "0.1.22", path = "../chain", default-features = false, optional = true} diff --git a/transport/Cargo.toml b/transport/Cargo.toml index 92935c9a3..ada648ab9 100644 --- a/transport/Cargo.toml +++ b/transport/Cargo.toml @@ -29,7 +29,7 @@ hyper = { version = "0.14.20", features = ["full"], optional = true } libp2p = { version = "0.46.1", optional = true, default-features = false, features = ["mplex", "noise", "websocket", "yamux", "ping", "identify", "dns-tokio", "tcp-tokio"] } log = "0.4.17" pin-project = "1.0.11" -thiserror = "1.0.31" +thiserror = "1.0.32" url = { version = "2.2.2", optional = true } [dev-dependencies]