chore: move tower+hyper to workspace (#7150)

This commit is contained in:
Matthias Seitz
2024-03-15 12:22:12 +01:00
committed by GitHub
parent fdbe63b132
commit 27194def04
5 changed files with 10 additions and 7 deletions

View File

@ -253,6 +253,9 @@ async-trait = "0.1.68"
futures = "0.3.26"
pin-project = "1.0.12"
futures-util = "0.3.25"
hyper = "0.14.25"
tower = "0.4"
tower-http = "0.4"
# p2p
discv5 = "0.4"

View File

@ -78,7 +78,7 @@ serde.workspace = true
serde_json.workspace = true
# http/rpc
hyper = "0.14.25"
hyper.workspace = true
# tracing
tracing.workspace = true

View File

@ -21,7 +21,7 @@ tokio-util = { workspace = true, features = ["codec"] }
tokio-stream.workspace = true
async-trait.workspace = true
pin-project.workspace = true
tower = "0.4"
tower.workspace = true
# misc
jsonrpsee = { workspace = true, features = ["server", "client"] }

View File

@ -24,9 +24,9 @@ reth-node-api.workspace = true
# rpc/net
jsonrpsee = { workspace = true, features = ["server"] }
tower-http = { version = "0.4", features = ["full"] }
tower = { version = "0.4", features = ["full"] }
hyper = "0.14"
tower-http = { workspace = true, features = ["full"] }
tower = { workspace = true, features = ["full"] }
hyper.workspace = true
# metrics
reth-metrics = { workspace = true, features = ["common"] }

View File

@ -45,7 +45,7 @@ revm-primitives = { workspace = true, features = ["serde"] }
jsonrpsee.workspace = true
http = "0.2.8"
http-body = "0.4.5"
hyper = "0.14.24"
hyper.workspace = true
jsonwebtoken = "8"
## required for optimism sequencer delegation
@ -56,7 +56,7 @@ reqwest = { version = "0.11", default-features = false, features = [
# async
async-trait.workspace = true
tokio = { workspace = true, features = ["sync"] }
tower = "0.4"
tower.workspace = true
tokio-stream = { workspace = true, features = ["sync"] }
pin-project.workspace = true
parking_lot.workspace = true