hyper icon indicating copy to clipboard operation
hyper copied to clipboard

An HTTP library for Rust

Results 302 hyper issues
Sort by recently updated
recently updated
newest added

**Version** `master` **Platform** Darwin xxx 22.5.0 Darwin Kernel Version 22.5.0: Mon Apr 24 20:51:50 PDT 2023; root:xnu- **Description** See https://github.com/curl/curl/issues/11203 for the user report and find my analysis in the...

C-performance
A-ffi

I did some exploration work with Hyper in the last weeks, and tried to model some typical application workflows with it. Compared to other (web) frameworks, I run into a...

B-rfc

Currently only to identify undocumented unsafety. Even the default clippy deny's produce many warnings/errors. Nevertheless, ran `clippy --fix` on the codebase to deal with some of the obvious things. Some...

`cargo audit` checks for dependencies with known issues. This PR adds a github workflow that runs `cargo audit` on a weekly basis on `HEAD` and whenever a dependency changes. Bumped...

**Is your feature request related to a problem? Please describe.** Reduce boilerplate, like the actix-web and the std lib too. Currently it needs: ```rust let addr = SocketAddr::from(("127.0.0.1", 8080)); Server::bind(&addr)...

A-server
E-easy
C-feature
K-hyper-util

Continues the work started in https://github.com/hyperium/hyper/pull/2278 by adding bindings to allow using hyper's server stack from a C runtime. The patterns are based on the model used on the client...

closes #3213 To try it out: https://github.com/dswij/hyper/issues/new?assignees=&labels=S-bug&projects=&template=bug_report.yml&title=Bug+report+%F0%9F%90%9B

As part of the 1.0 launch, we should polish https://hyper.rs. The repo to do so is in https://github.com/hyperium/hyperium.github.io. This is a list of things I came up with, many can...

A-docs

Summary: as a hyper consumer, I'd love to be able to know when a server has encountered a parse error while reading a request so that we can report that...

C-feature