Skip to content

Commit

Permalink
rename to solana-secp256k1-program like in anza-xyz#3632
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinheavey committed Nov 14, 2024
1 parent 0b19841 commit 51e2b9b
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 17 deletions.
6 changes: 3 additions & 3 deletions 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ members = [
"sdk/reserved-account-keys",
"sdk/sanitize",
"sdk/sdk-ids",
"sdk/secp256k1-instruction",
"sdk/secp256k1-program",
"sdk/seed-derivable",
"sdk/seed-phrase",
"sdk/serde",
Expand Down Expand Up @@ -529,7 +529,7 @@ solana-runtime-transaction = { path = "runtime-transaction", version = "=2.2.0"
solana-sdk = { path = "sdk", version = "=2.2.0" }
solana-sdk-ids = { path = "sdk/sdk-ids", version = "=2.2.0" }
solana-sdk-macro = { path = "sdk/macro", version = "=2.2.0" }
solana-secp256k1-instruction = { path = "sdk/secp256k1-instruction", version = "=2.2.0" }
solana-secp256k1-program = { path = "sdk/secp256k1-program", version = "=2.2.0" }
solana-secp256k1-recover = { path = "curves/secp256k1-recover", version = "=2.2.0", default-features = false }
solana-send-transaction-service = { path = "send-transaction-service", version = "=2.2.0" }
solana-short-vec = { path = "sdk/short-vec", version = "=2.2.0" }
Expand Down
4 changes: 2 additions & 2 deletions 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/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ full = [
"dep:solana-precompile-error",
"dep:solana-presigner",
"dep:solana-quic-definitions",
"dep:solana-secp256k1-instruction",
"dep:solana-secp256k1-program",
"dep:solana-seed-derivable",
"dep:solana-seed-phrase",
"dep:solana-signer",
Expand Down Expand Up @@ -131,7 +131,7 @@ solana-reward-info = { workspace = true, features = ["serde"] }
solana-sanitize = { workspace = true }
solana-sdk-ids = { workspace = true }
solana-sdk-macro = { workspace = true }
solana-secp256k1-instruction = { workspace = true, optional = true, features = ["bincode"] }
solana-secp256k1-program = { workspace = true, optional = true, features = ["bincode"] }
solana-secp256k1-recover = { workspace = true }
solana-seed-derivable = { workspace = true, optional = true }
solana-seed-phrase = { workspace = true, optional = true }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "solana-secp256k1-instruction"
name = "solana-secp256k1-program"
description = "Instructions for the Solana Secp256k1 native program."
documentation = "https://docs.rs/solana-secp256k1-instruction"
documentation = "https://docs.rs/solana-secp256k1-program"
version = { workspace = true }
authors = { workspace = true }
repository = { workspace = true }
Expand Down Expand Up @@ -29,7 +29,7 @@ solana-hash = { workspace = true }
solana-logger = { workspace = true }
solana-program = { path = "../program" }
solana-sdk = { path = ".." }
solana-secp256k1-instruction = { path = ".", features = [
solana-secp256k1-program = { path = ".", features = [
"dev-context-only-utils",
] }

Expand Down
File renamed without changes.
7 changes: 2 additions & 5 deletions sdk/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,12 +187,9 @@ pub use solana_sdk_macro::declare_deprecated_id;
pub use solana_sdk_macro::declare_id;
/// Convenience macro to define multiple static public keys.
pub use solana_sdk_macro::pubkeys;
#[deprecated(
since = "2.2.0",
note = "Use `solana-secp256k1-instruction` crate instead"
)]
#[deprecated(since = "2.2.0", note = "Use `solana-secp256k1-program` crate instead")]
#[cfg(feature = "full")]
pub use solana_secp256k1_instruction as secp256k1_instruction;
pub use solana_secp256k1_program as secp256k1_instruction;
#[deprecated(since = "2.1.0", note = "Use `solana-secp256k1-recover` crate instead")]
pub use solana_secp256k1_recover as secp256k1_recover;
#[deprecated(since = "2.2.0", note = "Use `solana-serde` crate instead")]
Expand Down

0 comments on commit 51e2b9b

Please sign in to comment.