• Home
Name Date Size #Lines LOC

..--

src/06-Sep-2024-27,40318,810

Android.bpD06-Sep-20241.5 KiB6359

Cargo.tomlD06-Sep-20245.6 KiB335274

Cargo.toml.origD06-Sep-20244.9 KiB259211

LICENSED06-Sep-20241 KiB2016

METADATAD06-Sep-2024382 2120

MODULE_LICENSE_MITD06-Sep-20240

OWNERSD06-Sep-202469 32

README.mdD06-Sep-20241.5 KiB4228

cargo_embargo.jsonD06-Sep-2024191 1716

README.md

1# [hyper](https://hyper.rs)
2
3[![crates.io](https://img.shields.io/crates/v/hyper.svg)](https://crates.io/crates/hyper)
4[![Released API docs](https://docs.rs/hyper/badge.svg)](https://docs.rs/hyper)
5[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
6[![CI](https://github.com/hyperium/hyper/workflows/CI/badge.svg)](https://github.com/hyperium/hyper/actions?query=workflow%3ACI)
7[![Discord chat][discord-badge]][discord-url]
8
9A **fast** and **correct** HTTP implementation for Rust.
10
11- HTTP/1 and HTTP/2
12- Asynchronous design
13- Leading in performance
14- Tested and **correct**
15- Extensive production use
16- Client and Server APIs
17
18**Get started** by looking over the [guides](https://hyper.rs/guides).
19
20## "Low-level"
21
22hyper is a relatively low-level library, meant to be a building block for
23libraries and applications.
24
25If you are looking for a convenient HTTP client, then you may wish to consider
26[reqwest](https://github.com/seanmonstar/reqwest). If you are looking for a
27convenient HTTP server, then you may wish to consider [Axum](https://github.com/tokio-rs/tokio).
28Both are built on top of this library.
29
30## Contributing
31
32To get involved, take a look at [CONTRIBUTING](CONTRIBUTING.md).
33
34If you prefer chatting, there is an active community in the [Discord server][discord-url].
35
36## License
37
38hyper is provided under the MIT license. See [LICENSE](LICENSE).
39
40[discord-badge]: https://img.shields.io/discord/500028886025895936.svg?logo=discord
41[discord-url]: https://discord.gg/kkwpueZ
42