Skip to content

Commit

Permalink
tighten deps
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinheavey committed Nov 20, 2024
1 parent edec69c commit 08b2ad6
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions sdk/secp256k1-program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ libsecp256k1 = { workspace = true, features = ["hmac"] }
serde = { workspace = true, optional = true }
serde_derive = { workspace = true, optional = true }
sha3 = { workspace = true }
solana-feature-set = { workspace = true }
solana-instruction = { workspace = true, features = ["std"] }
solana-precompile-error = { workspace = true }
solana-feature-set = { workspace = true, optional = true }
solana-instruction = { workspace = true, features = ["std"], optional = true }
solana-precompile-error = { workspace = true, optional = true }
solana-sdk-ids = { workspace = true, optional = true }

[dev-dependencies]
Expand All @@ -29,12 +29,17 @@ solana-hash = { workspace = true }
solana-logger = { workspace = true }
solana-program = { path = "../program" }
solana-sdk = { path = ".." }
solana-secp256k1-program = { path = ".", features = [
"dev-context-only-utils",
] }
solana-secp256k1-program = { path = ".", features = ["dev-context-only-utils"] }

[features]
bincode = ["dep:bincode", "dep:solana-sdk-ids", "serde"]
bincode = [
"dep:bincode",
"dep:solana-feature-set",
"dep:solana-instruction",
"dep:solana-precompile-error",
"dep:solana-sdk-ids",
"serde",
]
dev-context-only-utils = ["bincode"]
serde = ["dep:serde", "dep:serde_derive"]

Expand Down

0 comments on commit 08b2ad6

Please sign in to comment.