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

@ -12,17 +12,17 @@ Reth RPC testing helpers
[dependencies]
# reth
reth-primitives = { path = "../../primitives" }
reth-rpc-types = { path = "../rpc-types" }
reth-primitives = { workspace = true }
reth-rpc-types = { workspace = true }
reth-rpc-api = { path = "../rpc-api", default-features = false, features = ["client"] }
# async
async-trait = "0.1"
futures = "0.3"
async-trait = { workspace = true }
futures = { workspace = true }
# misc
jsonrpsee = { version = "0.18", features = ["client", "async-client"] }
[dev-dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros", "rt"] }
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "rt"] }