Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to hyper dependency to version 1 #50

Merged
merged 15 commits into from
Jun 27, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Address MR comments for Incoming
  • Loading branch information
kellpossible committed Jun 25, 2024
commit 609362f380bb13ff355fc575ebee8a8f118188e3
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -691,7 +691,7 @@ impl HttpClient for DefaultClient {
Box<
dyn Future<
Output = Result<
Response<hyper::body::Incoming>,
Response<Incoming>,
hyper_util::client::legacy::Error,
>,
> + Send,
@@ -731,7 +731,7 @@ pub trait HttpClient: Send + Sync + 'static {
Box<
dyn Future<
Output = Result<
Response<hyper::body::Incoming>,
Response<Incoming>,
hyper_util::client::legacy::Error,
>,
> + Send,