feat(primitives): k256 crate fallback for secp256k1 module (#9989)

This commit is contained in:
Alexey Shekhirin
2024-08-02 13:53:59 +01:00
committed by GitHub
parent 340c95eba0
commit d7f9a255e1
15 changed files with 192 additions and 41 deletions

View File

@ -15,7 +15,7 @@ workspace = true
reth-chainspec.workspace = true
reth-ethereum-forks.workspace = true
reth-evm.workspace = true
reth-primitives.workspace = true
reth-primitives = { workspace = true, features = ["reth-codec"] }
reth-revm.workspace = true
reth-ethereum-consensus.workspace = true
reth-prune-types.workspace = true
@ -31,9 +31,10 @@ alloy-sol-types.workspace = true
[dev-dependencies]
reth-testing-utils.workspace = true
reth-revm = { workspace = true, features = ["test-utils"] }
reth-primitives = { workspace = true, features = ["secp256k1"] }
secp256k1.workspace = true
serde_json.workspace = true
[features]
default = ["std"]
std = []
std = []