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

@@ -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