http-client icon indicating copy to clipboard operation
http-client copied to clipboard

Types and traits for http clients

Results 28 http-client issues
Sort by recently updated
recently updated
newest added

closes #103 --- This is not related to the changes in this pull request, but I will note it here anyway. The two functions I modified this time, one sets...

If a webside has an invalid response, the line https://github.com/http-rs/http-client/blob/main/src/isahc.rs#L58 will crash.

bug

I believe the timeout that can be set through http_client refers to the connection timeout. And I think the process shown below sets a timeout on isahc. According to the...

bug

`IsahcClient::new()` creates a client with a timeout set to 60 seconds. However, this client does not actually return a timeout error after 60 seconds. IsahcClient created with Config and try_into...

bug

http-client doesn't use any of the default features.

For Surf 3.0 I am almost certainly going to merge http-client back into it. The feature flag mess currently is hellish and maintaining it is a bad experience. Most of...

Would like to use h1_client_rustls with surf, tide and rustls in one crate, for this it was necessary to update the dependencies of http-client.

If there is no body then don't construct a zero-lengthed body. Fixes: https://github.com/http-rs/surf/issues/321 Fixes: https://github.com/http-rs/surf/issues/218