chore: move reqwest to workspace dep (#7910)

This commit is contained in:
Matthias Seitz
2024-04-26 13:31:19 +02:00
committed by GitHub
parent bb0809ce2e
commit 73ea68692c
4 changed files with 28 additions and 13 deletions

View File

@@ -36,9 +36,7 @@ revm-primitives.workspace = true
# async
async-trait.workspace = true
hyper.workspace = true
http.workspace = true
http-body.workspace = true
reqwest = { version = "0.11", default-features = false, features = [
reqwest = { workspace = true, default-features = false, features = [
"rustls-tls-native-roots",
] }
tracing.workspace = true

View File

@@ -95,7 +95,7 @@ impl SequencerClient {
self.http_client()
.post(self.endpoint())
.header(http::header::CONTENT_TYPE, "application/json")
.header(reqwest::header::CONTENT_TYPE, "application/json")
.body(body)
.send()
.await