From 353b9c3aaf534d255d0e5c219b1464c30dd1a1c7 Mon Sep 17 00:00:00 2001 From: katelyn martin Date: Tue, 21 May 2024 18:02:25 -0400 Subject: [PATCH] =?UTF-8?q?ci:=20=F0=9F=A6=80=20fix=20nightly=20`cargo=20t?= =?UTF-8?q?est-all-features`=20(#1424)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit example: https://github.com/informalsystems/tendermint-rs/actions/runs/9181862633/job/25249544213?pr=1423 ``` error: unexpected `cfg` condition value: `grpc-client` --> proto/src/lib.rs:3:46 | 3 | #![cfg_attr(not(any(feature = "grpc-server", feature = "grpc-client")), no_std)] | ^^^^^^^^^^^^^^^^^^^^^^^ | = note: expected values for `feature` are: `default`, `grpc`, `grpc-server`, `tonic` = help: consider adding `grpc-client` as a feature in `Cargo.toml` = note: see for more information about checking conditional configuration ``` --- proto/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/src/lib.rs b/proto/src/lib.rs index ebff4132f..54944fff9 100644 --- a/proto/src/lib.rs +++ b/proto/src/lib.rs @@ -1,6 +1,6 @@ //! tendermint-proto library gives the developer access to the Tendermint proto-defined structs. -#![cfg_attr(not(any(feature = "grpc-server", feature = "grpc-client")), no_std)] +#![cfg_attr(not(any(feature = "grpc-server")), no_std)] #![deny(warnings, trivial_casts, trivial_numeric_casts, unused_import_braces)] #![allow(clippy::large_enum_variant)] #![forbid(unsafe_code)]