mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
48 lines
1.1 KiB
TOML
48 lines
1.1 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 = [
|
|
"reth-primitives/asm-keccak",
|
|
"alloy-primitives/asm-keccak",
|
|
"revm/asm-keccak",
|
|
]
|
|
|
|
[dependencies]
|
|
reth-chainspec.workspace = true
|
|
reth-primitives.workspace = true
|
|
reth-db = { workspace = true, features = [
|
|
"mdbx",
|
|
"test-utils",
|
|
"disable-lock",
|
|
] }
|
|
reth-db-api.workspace = true
|
|
reth-provider = { workspace = true, features = ["test-utils"] }
|
|
reth-stages.workspace = true
|
|
reth-evm-ethereum.workspace = true
|
|
reth-revm = { workspace = true, features = ["std"] }
|
|
|
|
revm = { workspace = true, features = ["secp256k1", "blst", "c-kzg"] }
|
|
|
|
alloy-rlp.workspace = true
|
|
alloy-primitives.workspace = true
|
|
alloy-eips.workspace = true
|
|
alloy-consensus.workspace = true
|
|
|
|
walkdir = "2.3.3"
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
thiserror.workspace = true
|
|
rayon.workspace = true
|