fix: feature propagation (#11888)

Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
Co-authored-by: Oliver <onbjerg@users.noreply.github.com>
This commit is contained in:
liamaharon
2024-10-20 07:36:11 +11:00
committed by GitHub
parent 6c026daf92
commit cf4a4454ec
59 changed files with 880 additions and 201 deletions

View File

@ -46,4 +46,9 @@ tokio-stream.workspace = true
reth-testing-utils.workspace = true
[features]
test-utils = []
test-utils = [
"reth-consensus/test-utils",
"reth-network-p2p/test-utils",
"reth-primitives-traits/test-utils",
"reth-provider/test-utils"
]

View File

@ -93,13 +93,24 @@ pprof = { workspace = true, features = [
[features]
test-utils = [
"dep:reth-chainspec",
"reth-network-p2p/test-utils",
"reth-db/test-utils",
"reth-provider/test-utils",
"reth-stages-api/test-utils",
"dep:reth-testing-utils",
"dep:tempfile",
"dep:reth-chainspec",
"reth-network-p2p/test-utils",
"reth-db/test-utils",
"reth-provider/test-utils",
"reth-stages-api/test-utils",
"dep:reth-testing-utils",
"dep:tempfile",
"reth-chainspec?/test-utils",
"reth-consensus/test-utils",
"reth-evm/test-utils",
"reth-downloaders/test-utils",
"reth-primitives/test-utils",
"reth-primitives-traits/test-utils",
"reth-revm/test-utils",
"reth-codecs/test-utils",
"reth-db-api/test-utils",
"reth-trie-db/test-utils",
"reth-trie/test-utils"
]
[[bench]]