Skip to content

Commit

Permalink
remove solana-sdk from solana-install (#4239)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinheavey authored Jan 8, 2025
1 parent 4d5daab commit c98de65
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 15 deletions.
9 changes: 8 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion install/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,16 @@ serde_yaml = { workspace = true }
serde_yaml_08 = { package = "serde_yaml", version = "0.8.26" }
solana-clap-utils = { workspace = true }
solana-config-program = { workspace = true }
solana-hash = { workspace = true }
solana-keypair = { workspace = true }
solana-logger = { workspace = true }
solana-message = { workspace = true }
solana-pubkey = { workspace = true }
solana-rpc-client = { workspace = true }
solana-sdk = { workspace = true }
solana-sha256-hasher = { workspace = true }
solana-signature = { workspace = true }
solana-signer = { workspace = true }
solana-transaction = { workspace = true }
solana-version = { workspace = true }
tar = { workspace = true }
tempfile = { workspace = true }
Expand Down
14 changes: 7 additions & 7 deletions install/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ use {
indicatif::{ProgressBar, ProgressStyle},
serde_derive::{Deserialize, Serialize},
solana_config_program::{config_instruction, get_config_data, ConfigState},
solana_hash::Hash,
solana_keypair::{read_keypair_file, signable::Signable, Keypair},
solana_message::Message,
solana_pubkey::Pubkey,
solana_rpc_client::rpc_client::RpcClient,
solana_sdk::{
hash::{Hash, Hasher},
message::Message,
pubkey::Pubkey,
signature::{read_keypair_file, Keypair, Signable, Signer},
transaction::Transaction,
},
solana_sha256_hasher::Hasher,
solana_signer::Signer,
solana_transaction::Transaction,
std::{
fs::{self, File},
io::{self, BufReader, Read},
Expand Down
2 changes: 1 addition & 1 deletion install/src/config.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use {
crate::update_manifest::UpdateManifest,
serde_derive::{Deserialize, Serialize},
solana_sdk::pubkey::Pubkey,
solana_pubkey::Pubkey,
std::{
fs::{create_dir_all, File},
io::{self, Write},
Expand Down
9 changes: 4 additions & 5 deletions install/src/update_manifest.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
use {
serde_derive::{Deserialize, Serialize},
solana_config_program::ConfigState,
solana_sdk::{
hash::Hash,
pubkey::Pubkey,
signature::{Signable, Signature},
},
solana_hash::Hash,
solana_keypair::signable::Signable,
solana_pubkey::Pubkey,
solana_signature::Signature,
std::{borrow::Cow, error, io},
};

Expand Down

0 comments on commit c98de65

Please sign in to comment.