No description
  • Rust 99.1%
  • Python 0.8%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2018-07-22 21:29:31 +02:00
ci Make CI build flatter (and therefore faster) (#123) 2017-09-27 14:20:08 -07:00
examples Upgrade to env_logger 0.5 & log 0.4; reduce related dependencies (#226) 2018-02-23 20:25:42 -08:00
fixtures/hpack Add HPACK test cases 2017-05-31 14:44:58 -07:00
src Add stream_id accessors to public API types (#292) 2018-07-12 21:01:57 -07:00
tests Fix spurrious test failure (#288) 2018-06-18 11:20:18 -07:00
util Move tests and support utilities to sub crates. (#268) 2018-05-03 13:08:39 -07:00
.gitignore Include fuzz testing setup (#274) 2018-05-10 14:48:02 -07:00
.travis.yml Move tests and support utilities to sub crates. (#268) 2018-05-03 13:08:39 -07:00
Cargo.toml Update links to gitlab 2018-07-22 21:29:31 +02:00
CHANGELOG.md Bump version to v0.1.10 (#287) 2018-06-18 12:01:35 -07:00
CONTRIBUTING.md Tweak CONTRIBUTING 2017-12-18 22:22:40 -08:00
LICENSE License h2 only under the MIT license 2017-12-16 14:52:08 -06:00
README.md update readme to point usage example at crates.io (#218) 2018-01-12 11:54:22 -08:00

H2

A Tokio aware, HTTP/2.0 client & server implementation for Rust.

Build Status License: MIT Crates.io Documentation

More information about this crate can be found in the crate documentation.

Features

  • Client and server HTTP/2.0 implementation.
  • Implements the full HTTP/2.0 specification.
  • Passes h2spec.
  • Focus on performance and correctness.
  • Built on Tokio.

Non goals

This crate is intended to only be an implementation of the HTTP/2.0 specification. It does not handle:

  • Managing TCP connections
  • HTTP 1.0 upgrade
  • TLS
  • Any feature not described by the HTTP/2.0 specification.

The intent is that this crate will eventually be used by hyper, which will provide all of these features.

Usage

To use h2, first add this to your Cargo.toml:

[dependencies]
h2 = "0.1"

Next, add this to your crate:

extern crate h2;

use h2::server::Connection;

fn main() {
    // ...
}

FAQ

How does h2 compare to solicit or rust-http2?

The h2 library has implemented more of the details of the HTTP/2.0 specification than any other Rust library. It also passes the h2spec set of tests. The h2 library is rapidly approaching "production ready" quality.

Besides the above, Solicit is built on blocking I/O and does not appear to be actively maintained.

Is this an embedded Java SQL database engine?

No.