mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-09 15:28:01 -05:00
Co-authored-by: Roman Krasiuk <rokrassyuk@gmail.com> Co-authored-by: Alexey Shekhirin <5773434+shekhirin@users.noreply.github.com>
54 lines
1.6 KiB
TOML
54 lines
1.6 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 }
|
|
reth-tracing.workspace = true
|
|
reth-trie.workspace = true
|
|
reth-trie-db.workspace = true
|
|
revm = { workspace = true, features = ["secp256k1", "blst", "c-kzg"] }
|
|
|
|
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
|
|
tracing.workspace = true
|
|
# TODO: When we build for a windows target on an ubuntu runner, crunchy tries to
|
|
# get the wrong path, update this when the workflow has been updated
|
|
#
|
|
# See: https://github.com/eira-fransham/crunchy/issues/13
|
|
crunchy = "=0.2.2"
|