forked from solana-labs/solana
-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extract ed25519-instructions crate (#3330)
* strat extracting ed25519-instructions crate * missing feature activation * fix imports and deps * update lock file * import program id from solana_sdk_ids * use more granular dev deps * fix program id in tests
- Loading branch information
1 parent
89c0f70
commit 22e10c7
Showing
7 changed files
with
85 additions
and
11 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[package] | ||
name = "solana-ed25519-instructions" | ||
description = "Instructions for the Solana ed25519 native program" | ||
documentation = "https://docs.rs/solana-ed25519-instructions" | ||
version = { workspace = true } | ||
authors = { workspace = true } | ||
repository = { workspace = true } | ||
homepage = { workspace = true } | ||
license = { workspace = true } | ||
edition = { workspace = true } | ||
|
||
[dependencies] | ||
bytemuck = { workspace = true } | ||
bytemuck_derive = { workspace = true } | ||
ed25519-dalek = { workspace = true } | ||
solana-feature-set = { workspace = true } | ||
solana-instruction = { workspace = true, features = ["std"] } | ||
solana-precompile-error = { workspace = true } | ||
solana-sdk-ids = { workspace = true } | ||
|
||
[dev-dependencies] | ||
hex = { workspace = true } | ||
rand0-7 = { workspace = true } | ||
solana-hash = { workspace = true } | ||
solana-keypair = { workspace = true } | ||
solana-logger = { workspace = true } | ||
solana-sdk = { path = ".." } | ||
solana-signer = { workspace = true } | ||
|
||
[package.metadata.docs.rs] | ||
targets = ["x86_64-unknown-linux-gnu"] | ||
|
||
[lints] | ||
workspace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters