Skip to content

Commit

Permalink
remove solana-program and activate required feature
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinheavey committed Dec 4, 2024
1 parent 298d386 commit d35f9b3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion programs/sbf/Cargo.lock

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

4 changes: 2 additions & 2 deletions sdk/system-transaction/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
solana-hash = { workspace = true }
solana-keypair = { workspace = true }
solana-program = { workspace = true }
solana-message = { workspace = true }
solana-pubkey = { workspace = true }
solana-signer = { workspace = true }
solana-system-interface = { workspace = true, features = ["bincode"] }
solana-transaction = { workspace = true }
solana-transaction = { workspace = true, features = ["bincode"] }
2 changes: 1 addition & 1 deletion sdk/system-transaction/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! The `system_transaction` module provides functionality for creating system transactions.
use {
solana_hash::Hash, solana_keypair::Keypair, solana_program::message::Message,
solana_hash::Hash, solana_keypair::Keypair, solana_message::Message,
solana_pubkey::Pubkey, solana_signer::Signer,
solana_system_interface::instruction as system_instruction, solana_transaction::Transaction,
};
Expand Down
2 changes: 1 addition & 1 deletion svm/examples/Cargo.lock

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

0 comments on commit d35f9b3

Please sign in to comment.