From 9e654e9bffc170adf4e9e1590b6064d85a129f73 Mon Sep 17 00:00:00 2001 From: Farhad Shabani Date: Thu, 23 Nov 2023 09:30:05 -0800 Subject: [PATCH] fix: missing std features --- ibc-core/ics04-channel/Cargo.toml | 1 + ibc-core/ics24-host/Cargo.toml | 3 +++ 2 files changed, 4 insertions(+) diff --git a/ibc-core/ics04-channel/Cargo.toml b/ibc-core/ics04-channel/Cargo.toml index 1328099b5..ba955ef67 100644 --- a/ibc-core/ics04-channel/Cargo.toml +++ b/ibc-core/ics04-channel/Cargo.toml @@ -33,6 +33,7 @@ ibc-primitives = { workspace = true } [features] default = ["std"] std = [ + "prost/std", "ibc-core-client/std", "ibc-core-connection/std", "ibc-core-channel-types/std", diff --git a/ibc-core/ics24-host/Cargo.toml b/ibc-core/ics24-host/Cargo.toml index dc28e951f..664d3da23 100644 --- a/ibc-core/ics24-host/Cargo.toml +++ b/ibc-core/ics24-host/Cargo.toml @@ -40,6 +40,9 @@ rstest = { workspace = true } [features] default = ["std"] std = [ + "displaydoc/std", + "prost/std", + "subtle-encoding/std", "ibc-core-client-types/std", "ibc-core-client-context/std", "ibc-core-connection-types/std",