Skip to content

Commit

Permalink
remove solana-program from solana-precompiles (#3904)
Browse files Browse the repository at this point in the history
* remove solana-program from solana-precompiles

* fmt
  • Loading branch information
kevinheavey authored Dec 5, 2024
1 parent 4bfb187 commit 6c8d9f2
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.

2 changes: 1 addition & 1 deletion sdk/precompiles/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ edition = { workspace = true }
lazy_static = { workspace = true }
solana-ed25519-program = { workspace = true }
solana-feature-set = { workspace = true }
solana-message = { workspace = true }
solana-precompile-error = { workspace = true }
solana-program = { workspace = true, default-features = false }
solana-pubkey = { workspace = true }
solana-sdk-ids = { workspace = true }
solana-secp256k1-program = { workspace = true, features = ["bincode"] }
Expand Down
4 changes: 2 additions & 2 deletions sdk/precompiles/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
use {
lazy_static::lazy_static, solana_feature_set::FeatureSet,
solana_precompile_error::PrecompileError, solana_program::instruction::CompiledInstruction,
solana_pubkey::Pubkey,
solana_message::compiled_instruction::CompiledInstruction,
solana_precompile_error::PrecompileError, solana_pubkey::Pubkey,
};

/// All precompiled programs must implement the `Verify` function
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 6c8d9f2

Please sign in to comment.