From 7d3e4eb01a1bc9487aa00ea9d1c894dddcd68275 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Wed, 7 Aug 2024 13:39:37 -0600 Subject: [PATCH] [WIP] proto: fix `std` feature The `std` feature previously didn't link the `std` crate, and so when used in isolation wouldn't compile. --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bea99c508..c312ba318 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -48,6 +48,8 @@ jobs: steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable + - run: cargo test -p tendermint-proto + - run: cargo test -p tendermint-proto --features std - run: cargo test-all-features -p tendermint-proto tendermint-light-client: