-
Notifications
You must be signed in to change notification settings - Fork 0
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
Upgrade http 0.2 to http 1 #50
Comments
Yes. I've been meaning to upgrade for a while now. I've just been waiting on They recently merged the upgrade into master, but it is blocked on some other breaking changes. I'm gonna upgrade it anyway and temporarily change the testing client to This will be upgraded in #51, and a new release will be created after it is merged. |
Thank you! I indeed noticed that Reqwest still use 0.2 |
For information: it's available on 0.12-dev |
Would it be possible to use a more recent version of http? from 0.2 to latest 1.1.0?
Right now we get an error with this crate if using a more recent version in our dependencies:
http::request::Request<Vec> = req.try_into_http_request(ctx).unwrap...
| ------------------------------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected
Request<Vec<...>>
, foundRequest<_>
note:
Request<_>
andRequest<Vec<...>>
have similar names, but are actually distinct typesThe text was updated successfully, but these errors were encountered: