mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: use workspace dependencies (#3132)
This commit is contained in:
@ -10,17 +10,17 @@ description = "Network interfaces"
|
||||
|
||||
[dependencies]
|
||||
# reth
|
||||
reth-primitives = { path = "../../primitives" }
|
||||
reth-primitives = { workspace = true }
|
||||
reth-eth-wire = { path = "../eth-wire" }
|
||||
reth-rpc-types = { path = "../../rpc/rpc-types" }
|
||||
reth-rpc-types = { workspace = true }
|
||||
|
||||
# io
|
||||
serde = { version = "1.0", features = ["derive"], optional = true }
|
||||
serde = { workspace = true, features = ["derive"], optional = true }
|
||||
|
||||
# misc
|
||||
async-trait = "0.1"
|
||||
thiserror = "1.0.37"
|
||||
tokio = { version = "1.21.2", features = ["sync"] }
|
||||
async-trait = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
tokio = { workspace = true, features = ["sync"] }
|
||||
|
||||
[features]
|
||||
default = ["serde"]
|
||||
|
||||
Reference in New Issue
Block a user