From dd108df2ac54bac822efc1c704414227afc7fe67 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 13:35:25 +0000 Subject: [PATCH] Bump tendermint from 0.32.2 to 0.34.0 Bumps [tendermint](https://github.com/informalsystems/tendermint-rs) from 0.32.2 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.32.2...v0.34.0) --- updated-dependencies: - dependency-name: tendermint dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 30 ++++++++++++++++++++++++------ adapters/celestia/Cargo.toml | 2 +- examples/demo-rollup/Cargo.toml | 2 +- 3 files changed, 26 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index acdabc6cfc..ad87fa5e16 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8243,7 +8243,7 @@ dependencies = [ "sov-rollup-interface", "sov-zk-cycle-macros", "tendermint", - "tendermint-proto", + "tendermint-proto 0.32.2", "thiserror", "tokio", "tracing", @@ -9738,9 +9738,9 @@ dependencies = [ [[package]] name = "tendermint" -version = "0.32.2" +version = "0.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f0a7d05cf78524782337f8edd55cbc578d159a16ad4affe2135c92f7dbac7f0" +checksum = "bc2294fa667c8b548ee27a9ba59115472d0a09c2ba255771092a7f1dcf03a789" dependencies = [ "bytes", "digest 0.10.7", @@ -9750,8 +9750,8 @@ dependencies = [ "futures", "num-traits", "once_cell", - "prost 0.11.9", - "prost-types 0.11.9", + "prost 0.12.1", + "prost-types 0.12.1", "serde", "serde_bytes", "serde_json", @@ -9760,7 +9760,7 @@ dependencies = [ "signature 2.1.0", "subtle", "subtle-encoding", - "tendermint-proto", + "tendermint-proto 0.34.0", "time", "zeroize", ] @@ -9783,6 +9783,24 @@ dependencies = [ "time", ] +[[package]] +name = "tendermint-proto" +version = "0.34.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2cc728a4f9e891d71adf66af6ecaece146f9c7a11312288a3107b3e1d6979aaf" +dependencies = [ + "bytes", + "flex-error", + "num-derive 0.3.3", + "num-traits", + "prost 0.12.1", + "prost-types 0.12.1", + "serde", + "serde_bytes", + "subtle-encoding", + "time", +] + [[package]] name = "term" version = "0.7.0" diff --git a/adapters/celestia/Cargo.toml b/adapters/celestia/Cargo.toml index b422888c6c..c55c659070 100644 --- a/adapters/celestia/Cargo.toml +++ b/adapters/celestia/Cargo.toml @@ -14,7 +14,7 @@ prost = "0.11" prost-types = "0.11" # I keep this commented as a reminder to opportunity to optimze this crate for non native compilation #tendermint = { version = "0.32", default-features = false, features = ["std"] } -tendermint = "0.32" +tendermint = "0.34" tendermint-proto = "0.32" # Convenience diff --git a/examples/demo-rollup/Cargo.toml b/examples/demo-rollup/Cargo.toml index a264499589..37e880e012 100644 --- a/examples/demo-rollup/Cargo.toml +++ b/examples/demo-rollup/Cargo.toml @@ -53,7 +53,7 @@ sha2 = { workspace = true } hex = { workspace = true } serde_json = { workspace = true } reqwest = "0.11" -tendermint = "0.32" +tendermint = "0.34" tempfile = { workspace = true } proptest = { workspace = true } sov-rollup-interface = { path = "../../rollup-interface", features = ["fuzzing"] }