From 784f312fc74fa06498357bd9b84927f0d49c432d Mon Sep 17 00:00:00 2001 From: Erwan Or Date: Mon, 18 Nov 2024 15:48:52 -0500 Subject: [PATCH 1/2] tower-abci: bump `tendermint@0.39` --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9902edd..56cf16d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tower-abci" -version = "0.16.0" +version = "0.17.0" authors = [ "Penumbra Labs ", "Henry de Valence Date: Mon, 18 Nov 2024 16:01:02 -0500 Subject: [PATCH 2/2] tower-abci: disable clippy's lazy indent lint... --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index a06c9b7..eaa0a88 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,3 +1,4 @@ +#![allow(clippy::doc_lazy_continuation)] #![doc = include_str!("../README.md")] /// A fork of tower::buffer @ `e1760d38` that has four queues feeding /// the same worker task, with different priorities.