Skip to content

Commit

Permalink
fix AbiExample duplication
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinheavey committed Jul 5, 2024
1 parent 920ca4a commit 86e8671
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions curves/secp256k1-recover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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"]
1 change: 0 additions & 1 deletion curves/secp256k1-recover/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit 86e8671

Please sign in to comment.