From 284360fe5a308cebfcf670d24d6b6d2707667171 Mon Sep 17 00:00:00 2001 From: kevinheavey Date: Wed, 10 Jul 2024 12:05:40 +0400 Subject: [PATCH] make solana-signature dependent on "full" feature in SDK, as it is on master branch --- sdk/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index e959cdeea86967..66038406104091 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -27,6 +27,7 @@ full = [ "rand", "rand0-7", "serde_json", + "solana-signature", "ed25519-dalek", "ed25519-dalek-bip32", "libsecp256k1", @@ -82,7 +83,7 @@ solana-frozen-abi-macro = { workspace = true, optional = true } solana-program = { workspace = true } solana-sanitize = { workspace = true } solana-sdk-macro = { workspace = true } -solana-signature = { workspace = true, features = ["rand", "serde", "verify"] } +solana-signature = { workspace = true, features = ["rand", "serde", "verify"], optional = true } thiserror = { workspace = true } uriparse = { workspace = true }