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

@ -9,12 +9,12 @@ repository.workspace = true
[dependencies]
# reth
reth-primitives = { path = "../../primitives" }
reth-interfaces = { path = "../../interfaces" }
reth-provider = { path = "../../storage/provider" }
reth-primitives = { workspace = true }
reth-interfaces = { workspace = true }
reth-provider = { workspace = true }
[dev-dependencies]
reth-interfaces = { path = "../../interfaces", features = ["test-utils"] }
reth-provider = { path = "../../storage/provider", features = ["test-utils"] }
reth-interfaces = { workspace = true, features = ["test-utils"] }
reth-provider = { workspace = true, features = ["test-utils"] }
assert_matches = "1.5.0"
mockall = "0.11.3"