mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
fix(dep): tokio-util is no longer optional (#2697)
This commit is contained in:
@ -21,6 +21,7 @@ futures-util = "0.3.25"
|
|||||||
pin-project = "1.0"
|
pin-project = "1.0"
|
||||||
tokio = { version = "1.0", features = ["sync"] }
|
tokio = { version = "1.0", features = ["sync"] }
|
||||||
tokio-stream = "0.1"
|
tokio-stream = "0.1"
|
||||||
|
tokio-util = { version = "0.7", features = ["codec"] }
|
||||||
|
|
||||||
# misc
|
# misc
|
||||||
tracing = { workspace = true }
|
tracing = { workspace = true }
|
||||||
@ -30,7 +31,6 @@ rayon = "1.6.0"
|
|||||||
# optional deps for the test-utils feature
|
# optional deps for the test-utils feature
|
||||||
thiserror = { version = "1", optional = true }
|
thiserror = { version = "1", optional = true }
|
||||||
reth-rlp = { path = "../../rlp", optional = true }
|
reth-rlp = { path = "../../rlp", optional = true }
|
||||||
tokio-util = { version = "0.7", features = ["codec"], optional = true }
|
|
||||||
tempfile = { version = "3.3", optional = true }
|
tempfile = { version = "3.3", optional = true }
|
||||||
itertools = { version = "0.10", optional = true }
|
itertools = { version = "0.10", optional = true }
|
||||||
|
|
||||||
@ -41,7 +41,6 @@ reth-tracing = { path = "../../tracing" }
|
|||||||
|
|
||||||
assert_matches = "1.5.0"
|
assert_matches = "1.5.0"
|
||||||
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
||||||
tokio-util = { version = "0.7", features = ["codec"] }
|
|
||||||
reth-rlp = { path = "../../rlp" }
|
reth-rlp = { path = "../../rlp" }
|
||||||
itertools = "0.10"
|
itertools = "0.10"
|
||||||
|
|
||||||
@ -49,4 +48,4 @@ thiserror = "1"
|
|||||||
tempfile = "3.3"
|
tempfile = "3.3"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
test-utils = ["dep:reth-rlp", "dep:thiserror", "dep:tokio-util", "dep:tempfile", "dep:itertools"]
|
test-utils = ["dep:reth-rlp", "dep:thiserror", "dep:tempfile", "dep:itertools"]
|
||||||
|
|||||||
Reference in New Issue
Block a user