Skip to content

Commit

Permalink
remove solana-sdk from geyser-plugin-interface (#4245)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinheavey authored Jan 3, 2025
1 parent 106a927 commit 1fc63eb
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
4 changes: 3 additions & 1 deletion Cargo.lock

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

4 changes: 3 additions & 1 deletion geyser-plugin-interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ edition = { workspace = true }

[dependencies]
log = { workspace = true, features = ["std"] }
solana-sdk = { workspace = true }
solana-clock = { workspace = true }
solana-signature = { workspace = true }
solana-transaction = { workspace = true }
solana-transaction-status = { workspace = true }
thiserror = { workspace = true }

Expand Down
8 changes: 3 additions & 5 deletions geyser-plugin-interface/src/geyser_plugin_interface.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@
/// In addition, the dynamic library must export a "C" function _create_plugin which
/// creates the implementation of the plugin.
use {
solana_sdk::{
clock::{Slot, UnixTimestamp},
signature::Signature,
transaction::SanitizedTransaction,
},
solana_clock::{Slot, UnixTimestamp},
solana_signature::Signature,
solana_transaction::sanitized::SanitizedTransaction,
solana_transaction_status::{Reward, RewardsAndNumPartitions, TransactionStatusMeta},
std::{any::Any, error, io},
thiserror::Error,
Expand Down
4 changes: 3 additions & 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: 3 additions & 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 1fc63eb

Please sign in to comment.