mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-09 15:28:01 -05:00
48 lines
1.4 KiB
TOML
48 lines
1.4 KiB
TOML
[package]
|
|
name = "ef-tests"
|
|
version.workspace = true
|
|
description = "EF testing support for reth."
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
ef-tests = []
|
|
asm-keccak = ["alloy-primitives/asm-keccak", "revm/asm-keccak"]
|
|
|
|
[dependencies]
|
|
reth-chainspec.workspace = true
|
|
reth-ethereum-primitives.workspace = true
|
|
reth-primitives-traits.workspace = true
|
|
reth-consensus.workspace = true
|
|
reth-db = { workspace = true, features = ["mdbx", "test-utils", "disable-lock"] }
|
|
reth-db-api.workspace = true
|
|
reth-db-common.workspace = true
|
|
reth-provider = { workspace = true, features = ["test-utils"] }
|
|
reth-evm.workspace = true
|
|
reth-evm-ethereum.workspace = true
|
|
reth-ethereum-consensus.workspace = true
|
|
reth-revm = { workspace = true, features = ["std", "witness"] }
|
|
reth-stateless = { workspace = true, features = ["secp256k1"] }
|
|
reth-tracing.workspace = true
|
|
reth-trie.workspace = true
|
|
reth-trie-db.workspace = true
|
|
revm = { workspace = true, features = ["secp256k1", "blst", "c-kzg", "memory_limit"] }
|
|
|
|
alloy-rlp.workspace = true
|
|
alloy-primitives.workspace = true
|
|
alloy-eips.workspace = true
|
|
alloy-consensus.workspace = true
|
|
alloy-genesis.workspace = true
|
|
|
|
walkdir.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
thiserror.workspace = true
|
|
rayon.workspace = true
|