From 270d86fbbb6e210d154b34a5778daf679c9859be Mon Sep 17 00:00:00 2001 From: Lukasz Klimek <842586+lklimek@users.noreply.github.com> Date: Mon, 8 Apr 2024 18:34:59 +0200 Subject: [PATCH] chore: skip fmt of generated code --- proto/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/proto/src/lib.rs b/proto/src/lib.rs index 7fe1940..f62ca63 100644 --- a/proto/src/lib.rs +++ b/proto/src/lib.rs @@ -33,11 +33,13 @@ use bytes::{Buf, BufMut}; pub use error::Error; use prost::{encoding::encoded_len_varint, Message}; #[cfg(not(feature = "std"))] +#[rustfmt::skip] pub mod tenderdash_nostd; #[cfg(not(feature = "std"))] pub use tenderdash_nostd::*; #[cfg(feature = "std")] +#[rustfmt::skip] pub mod tenderdash_std; #[cfg(feature = "std")] pub use tenderdash_std::*;