From 19ae2aa9eed8304e5cd12f9a143ea0d94e3c61cf Mon Sep 17 00:00:00 2001 From: James Wilson Date: Fri, 4 Feb 2022 17:45:45 +0000 Subject: [PATCH] Set "std" feature on sp-runtime to avoid a static assertion error (#438) * apply std feature to runtime to avoid static assertion error * std is a default feature anyway --- subxt/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subxt/Cargo.toml b/subxt/Cargo.toml index 4c01d8e35b..dd22638ba8 100644 --- a/subxt/Cargo.toml +++ b/subxt/Cargo.toml @@ -30,7 +30,7 @@ thiserror = "1.0.24" subxt-macro = { version = "0.17.0", path = "../macro" } sp-core = { version = "5.0.0", default-features = false } -sp-runtime = { version = "5.0.0", default-features = false } +sp-runtime = "5.0.0" sp-version = "4.0.0" frame-metadata = "14.0.0"