Skip to content

Commit 92b577f

Browse files
author
Akash Thota
committed
fix: extract solana sdk signer
1 parent 320da0a commit 92b577f

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ resolver = "2"
1616

1717
[workspace.dependencies]
1818
solana-pubkey = "2"
19+
solana-signer = "2"
1920

2021
[profile.release]
2122
lto = true

cli/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,4 @@ toml = "0.7.6"
4949
walkdir = "2.3.2"
5050
bs58 = "0.5.1"
5151
solana-pubkey.workspace = true
52+
solana-signer.workspace = true

cli/src/lib.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,8 @@ use solana_sdk::commitment_config::CommitmentConfig;
2727
use solana_sdk::compute_budget::ComputeBudgetInstruction;
2828
use solana_sdk::instruction::{AccountMeta, Instruction};
2929
use solana_pubkey::Pubkey;
30-
use solana_sdk::signature::Signer;
31-
use solana_sdk::signer::keypair::Keypair;
32-
use solana_sdk::signer::EncodableKey;
30+
use solana_sdk::signature::Keypair;
31+
use solana_signer::{Signer, EncodableKey};
3332
use solana_sdk::transaction::Transaction;
3433
use std::collections::BTreeMap;
3534
use std::collections::HashMap;

0 commit comments

Comments
 (0)