From ffcabb5d605d1e30fd16cc36b78415b813619089 Mon Sep 17 00:00:00 2001 From: James Hiew Date: Thu, 29 Sep 2022 20:13:46 +0100 Subject: [PATCH] Explicitly patch tendermint-proto --- Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4e3126e..d621f18 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tendermint-proto = { git = "https://github.com/heliaxdev/tendermint-rs", rev = "95c52476bc37927218374f94ac8e2a19bd35bec9" } +tendermint-proto = "0.23.5" bytes = "1" tokio = { version = "1", features = ["full"]} tokio-util = { version = "0.6", features = ["codec"] } @@ -24,5 +24,8 @@ tracing-tower = { git = "https://github.com/tokio-rs/tracing/", tag = "tracing-0 structopt = "0.3" tracing-subscriber = { git = "https://github.com/tokio-rs/tracing/", tag = "tracing-0.1.30" } +[patch.crates-io] +tendermint-proto = { git = "https://github.com/heliaxdev/tendermint-rs", rev = "95c52476bc37927218374f94ac8e2a19bd35bec9" } + [features] doc = []