From 7a288ebbe43fa0d2c8da873ea7f5d2ee8c934ed9 Mon Sep 17 00:00:00 2001 From: kevinheavey Date: Sat, 12 Oct 2024 17:42:54 +0400 Subject: [PATCH] only activate "std" feature of reserved-account-keys under "full" feature of sdk --- sdk/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index 910b646b9bd567..fcbea429d7f648 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -27,6 +27,7 @@ full = [ "rand", "rand0-7", "serde_json", + "solana-reserved-account-keys/std", "solana-signature", "ed25519-dalek", "ed25519-dalek-bip32", @@ -98,7 +99,7 @@ solana-frozen-abi-macro = { workspace = true, optional = true, features = [ solana-program = { workspace = true } solana-program-memory = { workspace = true } solana-pubkey = { workspace = true } -solana-reserved-account-keys = { workspace = true, features = ["std"] } +solana-reserved-account-keys = { workspace = true } solana-sanitize = { workspace = true } solana-sdk-macro = { workspace = true } solana-secp256k1-recover = { workspace = true }