Move FileClient and BlockFileCodec out of test-utils (#5998)

Co-authored-by: Dan Cline <6798349+Rjected@users.noreply.github.com>
This commit is contained in:
Thomas Coratger
2024-01-10 20:02:57 +01:00
committed by GitHub
parent 43cdd73acf
commit 26e31f3197
7 changed files with 22 additions and 16 deletions

View File

@ -38,9 +38,9 @@ thiserror.workspace = true
# optional deps for the test-utils feature
reth-db = { workspace = true, optional = true }
alloy-rlp = { workspace = true, optional = true }
alloy-rlp.workspace = true
tempfile = { workspace = true, optional = true }
itertools = { workspace = true, optional = true }
itertools.workspace = true
[dev-dependencies]
reth-db = { workspace = true, features = ["test-utils"] }
@ -55,4 +55,5 @@ itertools.workspace = true
tempfile.workspace = true
[features]
test-utils = ["dep:alloy-rlp", "dep:tempfile", "dep:itertools", "reth-db/test-utils", "reth-interfaces/test-utils"]
test-utils = ["dep:tempfile", "reth-db/test-utils", "reth-interfaces/test-utils"]