Skip to content

Commit

Permalink
remove solana-program from solana-signature dev deps (#3942)
Browse files Browse the repository at this point in the history
* remove solana-program from solana-signature dev deps

* missing features
  • Loading branch information
kevinheavey authored Dec 5, 2024
1 parent a65e099 commit 8b8f22f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 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.

3 changes: 2 additions & 1 deletion sdk/signature/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@ solana-sanitize = { workspace = true }

[dev-dependencies]
bincode = { workspace = true }
bs58 = { workspace = true, features = ["std"] }
curve25519-dalek = { workspace = true }
ed25519-dalek = { workspace = true }
serde_derive = { workspace = true }
serde_json = { workspace = true }
solana-program = { workspace = true }
solana-pubkey = { workspace = true, features = ["std"] }
solana-short-vec = { workspace = true }
solana-signature = { path = ".", features = ["serde"] }

Expand Down
2 changes: 1 addition & 1 deletion sdk/signature/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ mod tests {
use {
super::*,
serde_derive::{Deserialize, Serialize},
solana_program::pubkey::Pubkey,
solana_pubkey::Pubkey,
};

#[test]
Expand Down

0 comments on commit 8b8f22f

Please sign in to comment.