From 70e5b6345bac9972c56b4b55245d4e5154ec990b Mon Sep 17 00:00:00 2001 From: Ranadeep Biswas Date: Wed, 30 Oct 2024 14:36:09 +0100 Subject: [PATCH] fix tests requring std --- Cargo.toml | 2 ++ ibc/Cargo.toml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index c5ba0fbff..139623def 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -85,6 +85,8 @@ ibc-apps = { version = "0.55.1", path = "./ibc-apps", default-features = f ibc-primitives = { version = "0.55.1", path = "./ibc-primitives", default-features = false } ibc-testkit = { version = "0.55.1", path = "./ibc-testkit", default-features = false } +ibc-eureka-core = { version = "0.55.1", path = "./ibc-eureka-core", default-features = false } + ibc-derive = { version = "0.9.0", path = "./ibc-derive" } ibc-core-client = { version = "0.55.1", path = "./ibc-core/ics02-client", default-features = false } diff --git a/ibc/Cargo.toml b/ibc/Cargo.toml index 1005db2a0..d8b3b57fb 100644 --- a/ibc/Cargo.toml +++ b/ibc/Cargo.toml @@ -27,6 +27,7 @@ ibc-core = { workspace = true } ibc-core-host-cosmos = { workspace = true } ibc-derive = { workspace = true } ibc-primitives = { workspace = true } +ibc-eureka-core = { workspace = true } [features] default = [ "std" ] @@ -34,6 +35,7 @@ std = [ "ibc-apps/std", "ibc-clients/std", "ibc-core/std", + "ibc-eureka-core/std", "ibc-core-host-cosmos/std", "ibc-primitives/std", ]