Skip to content
An HTTP library for Rust
Branch: master
Clone or download
Latest commit 8c345d5 Mar 2, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github chore(github): remove note about commit message style in PR template Nov 9, 2017
.travis chore(ci): only publish master docs Jun 16, 2017
benches perf(http1): implement an adaptive read buffer strategy Nov 28, 2018
examples feat(server): change `NewService` to `MakeService` with connection co… Nov 16, 2018
src v0.12.25 Mar 1, 2019
tests fix(client): coerce HTTP_2 requests to HTTP_11 Feb 28, 2019
.appveyor.yml feat(lib): convert to use tokio 0.1 Mar 19, 2018
.gitignore init Aug 30, 2014
.rustfmt.toml chore(lib): disable all rustfmt for now while its unstable Aug 6, 2018
.travis.yml chore(CI): remove coveralls Dec 5, 2018
CHANGELOG.md v0.12.25 Mar 1, 2019
CONTRIBUTING.md docs(contributing): add link to easy issues Oct 9, 2017
Cargo.toml v0.12.25 Mar 1, 2019
LICENSE chore(LICENSE): update license year Dec 5, 2018
README.md
build.rs feat(error): implement `Error::source` when available Feb 27, 2019

README.md

hyper

Travis Build Status MIT licensed crates.io Released API docs

A fast and correct HTTP implementation for Rust.

Get started by looking over the guides.

Hyper is a relatively low-level library, if you are looking for simple high-level HTTP client, then you may wish to consider reqwest, which is built on top of this library.

Overview

hyper is a fast, safe HTTP implementation written in and for Rust.

hyper offers both an HTTP client and server which can be used to drive complex web applications written entirely in Rust.

hyper makes use of "async IO" (non-blocking sockets) via the Tokio and Futures crates.

Be aware that hyper is still actively evolving towards 1.0, and is likely to experience breaking changes before stabilising. However, this mostly now around the instability of Future and async. The rest of the API is rather stable now. You can also see the issues in the upcoming milestones.

Contributing

To get involved, take a look at CONTRIBUTING.

There are two main avenues for real-time chatting about hyper: a Gitter room and irc.mozilla.org/hyper. They are mirrored, so choose whichever format you prefer.

License

hyper is provided under the MIT license. See LICENSE.

You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.