From 7085525fa51f80e77da843a977b7c3cb99ab62c7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 21 Oct 2023 01:43:59 +0000 Subject: [PATCH] Bump tendermint-proto from 0.30.0 to 0.34.0 Bumps [tendermint-proto](https://github.com/informalsystems/tendermint-rs) from 0.30.0 to 0.34.0. - [Release notes](https://github.com/informalsystems/tendermint-rs/releases) - [Changelog](https://github.com/informalsystems/tendermint-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/informalsystems/tendermint-rs/compare/v0.30.0...v0.34.0) --- updated-dependencies: - dependency-name: tendermint-proto dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 72 +++++++++++++++++++++++++++++++++++++++++++++--------- Cargo.toml | 2 +- 2 files changed, 62 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 848e89d..cf92e8a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2122,7 +2122,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e48e50df39172a3e7eb17e14642445da64996989bc212b583015435d39a58537" dependencies = [ "bytes 1.2.1", - "prost-derive", + "prost-derive 0.11.8", +] + +[[package]] +name = "prost" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4fdd22f3b9c31b53c060df4a0613a1c7f062d4115a2b984dd15b1858f7e340d" +dependencies = [ + "bytes 1.2.1", + "prost-derive 0.12.1", ] [[package]] @@ -2138,6 +2148,19 @@ dependencies = [ "syn 1.0.104", ] +[[package]] +name = "prost-derive" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "265baba7fabd416cf5078179f7d2cbeca4ce7a9041111900675ea7c4cb8a4c32" +dependencies = [ + "anyhow", + "itertools", + "proc-macro2 1.0.54", + "quote 1.0.26", + "syn 2.0.10", +] + [[package]] name = "prost-types" version = "0.11.1" @@ -2145,7 +2168,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4dfaa718ad76a44b3415e6c4d53b17c8f99160dcb3a99b10470fce8ad43f6e3e" dependencies = [ "bytes 1.2.1", - "prost", + "prost 0.11.8", +] + +[[package]] +name = "prost-types" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e081b29f63d83a4bc75cfc9f3fe424f9156cf92d8a4f0c9407cce9a1b67327cf" +dependencies = [ + "prost 0.12.1", ] [[package]] @@ -2837,8 +2869,8 @@ dependencies = [ "futures 0.3.21", "num-traits", "once_cell", - "prost", - "prost-types", + "prost 0.11.8", + "prost-types 0.11.1", "serde", "serde_bytes", "serde_json", @@ -2847,7 +2879,7 @@ dependencies = [ "signature 1.6.4", "subtle", "subtle-encoding", - "tendermint-proto", + "tendermint-proto 0.30.0", "time 0.3.11", "zeroize", ] @@ -2880,13 +2912,13 @@ dependencies = [ "flume", "hkdf", "merlin", - "prost", + "prost 0.11.8", "rand_core 0.5.1", "sha2 0.10.6", "signature 1.6.4", "subtle", "tendermint", - "tendermint-proto", + "tendermint-proto 0.30.0", "tendermint-std-ext", "x25519-dalek", "zeroize", @@ -2902,8 +2934,26 @@ dependencies = [ "flex-error", "num-derive 0.3.3", "num-traits", - "prost", - "prost-types", + "prost 0.11.8", + "prost-types 0.11.1", + "serde", + "serde_bytes", + "subtle-encoding", + "time 0.3.11", +] + +[[package]] +name = "tendermint-proto" +version = "0.34.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2cc728a4f9e891d71adf66af6ecaece146f9c7a11312288a3107b3e1d6979aaf" +dependencies = [ + "bytes 1.2.1", + "flex-error", + "num-derive 0.3.3", + "num-traits", + "prost 0.12.1", + "prost-types 0.12.1", "serde", "serde_bytes", "subtle-encoding", @@ -3003,13 +3053,13 @@ version = "0.4.2" dependencies = [ "ed25519-consensus", "flex-error", - "prost", + "prost 0.11.8", "serde", "serde_json", "subtle-encoding", "tendermint", "tendermint-p2p", - "tendermint-proto", + "tendermint-proto 0.34.0", "tracing", ] diff --git a/Cargo.toml b/Cargo.toml index b524b55..b622f15 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ serde = { version = "1", features = ["serde_derive"] } serde_json = "1" subtle-encoding = { version = "0.5", features = ["bech32-preview"] } tendermint = "0.30" -tendermint-proto = "0.30" +tendermint-proto = "0.34" tendermint-p2p = "0.30" tracing = "0.1"