From 8ead7a2581a06e0d7af4529a7267fdabd6b25d8c Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Fri, 20 Oct 2023 17:53:07 -0400 Subject: [PATCH] Add missing std feature flags to a couple Substrate dependencies --- substrate/coins/pallet/Cargo.toml | 3 ++- substrate/validator-sets/pallet/Cargo.toml | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/substrate/coins/pallet/Cargo.toml b/substrate/coins/pallet/Cargo.toml index 2ee8ecac..1936b400 100644 --- a/substrate/coins/pallet/Cargo.toml +++ b/substrate/coins/pallet/Cargo.toml @@ -18,8 +18,8 @@ scale-info = { version = "2", default-features = false, features = ["derive"] } frame-system = { git = "https://github.com/serai-dex/substrate", default-features = false } frame-support = { git = "https://github.com/serai-dex/substrate", default-features = false } -sp-std = { git = "https://github.com/serai-dex/substrate", default-features = false } sp-core = { git = "https://github.com/serai-dex/substrate", default-features = false } +sp-std = { git = "https://github.com/serai-dex/substrate", default-features = false } sp-runtime = { git = "https://github.com/serai-dex/substrate", default-features = false } pallet-transaction-payment = { git = "https://github.com/serai-dex/substrate", default-features = false } @@ -32,6 +32,7 @@ std = [ "frame-system/std", "frame-support/std", + "sp-core/std", "sp-std/std", "sp-runtime/std", diff --git a/substrate/validator-sets/pallet/Cargo.toml b/substrate/validator-sets/pallet/Cargo.toml index c5b69c5e..745cf087 100644 --- a/substrate/validator-sets/pallet/Cargo.toml +++ b/substrate/validator-sets/pallet/Cargo.toml @@ -35,7 +35,10 @@ std = [ "scale-info/std", "sp-core/std", + "sp-io/std", + "sp-std/std", "sp-application-crypto/std", + "sp-runtime/std", "frame-system/std", "frame-support/std",