#http2

bin+lib httpbis

Rust implementation of HTTP/2 protocol

29 releases

0.9.1 Jun 21, 2020
0.8.0 Apr 27, 2020
0.7.0 Jun 16, 2018
0.4.2 Mar 31, 2018
0.1.1 Jan 8, 2017

#36 in #http2

Download history 3863/week @ 2025-10-17 2938/week @ 2025-10-24 2104/week @ 2025-10-31 2478/week @ 2025-11-07 2157/week @ 2025-11-14 2065/week @ 2025-11-21 1791/week @ 2025-11-28 1367/week @ 2025-12-05 1437/week @ 2025-12-12 1374/week @ 2025-12-19 1216/week @ 2025-12-26 1312/week @ 2026-01-02 1194/week @ 2026-01-09 1622/week @ 2026-01-16 2523/week @ 2026-01-23 2032/week @ 2026-01-30

7,546 downloads per month
Used in 17 crates (3 directly)

MIT/Apache

650KB
15K SLoC

rust-http2

Build Status License crates.io

HTTP/2 client and server implementation in Rust based on tokio.

Currently it is used as base for implementation of grpc-rust.

Example server

Checkout the source code and execute command:

cargo run --example server

Server will be available on https://localhost:8443/. You need any modern browser with HTTP/2 support to open the page (e. g. Firefox, Safari, Chrome).

Server only works over HTTP/2, if browser doesn't send HTTP/2 preface, server closes the connection.

Example client

cargo run --example client https://google.com/

Result is:

:status: 302
cache-control: private
content-type: text/html; charset=UTF-8
referrer-policy: no-referrer
location: https://www.google.ru/?gfe_rd=cr&ei=mZQ4WZfaGISDZOzOktgO
content-length: 257
date: Thu, 08 Jun 2017 00:04:41 GMT
alt-svc: quic=":443"; ma=2592000; v="38,37,36,35"

<HTML><HEAD><meta http-equiv="content-type" content="text/html;charset=utf-8">
<TITLE>302 Moved</TITLE></HEAD><BODY>
<H1>302 Moved</H1>
The document has moved
<A HREF="https://www.google.ru/?gfe_rd=cr&amp;ei=mZQ4WZfaGISDZOzOktgO">here</A>.
</BODY></HTML>

Dependencies

~6MB
~94K SLoC