chore: use workspace dependencies (#3132)

This commit is contained in:
Waylon Jepsen
2023-06-13 16:46:26 -06:00
committed by GitHub
parent fe40a92f06
commit ea2fcee995
42 changed files with 383 additions and 354 deletions

View File

@ -11,17 +11,17 @@ description = "Task management"
[dependencies]
## async
tokio = { version = "1", features = ["sync", "rt"] }
tokio = { workspace = true, features = ["sync", "rt"] }
tracing-futures = "0.2"
futures-util = "0.3"
futures-util = { workspace = true }
## misc
tracing = { workspace = true }
thiserror = "1.0"
thiserror = { workspace = true }
dyn-clone = "1.0"
## rpc/metrics
reth-metrics = { path = "../metrics" }
reth-metrics = { workspace = true }
[dev-dependencies]
tokio = { version = "1", features = ["sync", "rt", "rt-multi-thread", "time", "macros"] }
tokio = { workspace = true, features = ["sync", "rt", "rt-multi-thread", "time", "macros"] }