diff --git a/Cargo.lock b/Cargo.lock index 4a4285794497f6..267af5b928579a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7348,7 +7348,6 @@ dependencies = [ "libsecp256k1", "rustc_version 0.4.0", "solana-define-syscall", - "solana-frozen-abi", "thiserror", ] diff --git a/curves/secp256k1-recover/Cargo.toml b/curves/secp256k1-recover/Cargo.toml index 668cfada73d11e..f23878f83f6804 100644 --- a/curves/secp256k1-recover/Cargo.toml +++ b/curves/secp256k1-recover/Cargo.toml @@ -11,7 +11,6 @@ edition = { workspace = true } [dependencies] borsh = { workspace = true, optional = true } -solana-frozen-abi = { workspace = true, optional = true } thiserror = { workspace = true } [target.'cfg(target_os = "solana")'.dependencies] @@ -32,7 +31,6 @@ rustc_version = { workspace = true } [features] borsh = ["dep:borsh"] -frozen-abi = ["dep:solana-frozen-abi"] [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/curves/secp256k1-recover/src/lib.rs b/curves/secp256k1-recover/src/lib.rs index c8901c8c0e0894..094c6a3e5ec5dd 100644 --- a/curves/secp256k1-recover/src/lib.rs +++ b/curves/secp256k1-recover/src/lib.rs @@ -64,7 +64,6 @@ pub const SECP256K1_SIGNATURE_LENGTH: usize = 64; pub const SECP256K1_PUBLIC_KEY_LENGTH: usize = 64; #[repr(transparent)] -#[cfg_attr(feature = "frozen-abi", derive(AbiExample))] #[cfg_attr( feature = "borsh", derive(BorshSerialize, BorshDeserialize, BorshSchema),