1
1
# H2
2
2
3
- A Tokio aware, HTTP/2.0 client & server implementation for Rust.
3
+ A Tokio aware, HTTP/2 client & server implementation for Rust.
4
4
5
5
[ ![ License: MIT] ( https://img.shields.io/badge/License-MIT-blue.svg )] ( https://opensource.org/licenses/MIT )
6
6
[ ![ Crates.io] ( https://img.shields.io/crates/v/h2.svg )] ( https://crates.io/crates/h2 )
@@ -12,21 +12,21 @@ More information about this crate can be found in the [crate documentation][dox]
12
12
13
13
## Features
14
14
15
- * Client and server HTTP/2.0 implementation.
16
- * Implements the full HTTP/2.0 specification.
15
+ * Client and server HTTP/2 implementation.
16
+ * Implements the full HTTP/2 specification.
17
17
* Passes [ h2spec] ( https://github.com/summerwind/h2spec ) .
18
18
* Focus on performance and correctness.
19
19
* Built on [ Tokio] ( https://tokio.rs ) .
20
20
21
21
## Non goals
22
22
23
- This crate is intended to only be an implementation of the HTTP/2.0
23
+ This crate is intended to only be an implementation of the HTTP/2
24
24
specification. It does not handle:
25
25
26
26
* Managing TCP connections
27
27
* HTTP 1.0 upgrade
28
28
* TLS
29
- * Any feature not described by the HTTP/2.0 specification.
29
+ * Any feature not described by the HTTP/2 specification.
30
30
31
31
This crate is now used by [ hyper] ( https://github.com/hyperium/hyper ) , which will provide all of these features.
32
32
@@ -55,7 +55,7 @@ fn main() {
55
55
56
56
** How does h2 compare to [ solicit] or [ rust-http2] ?**
57
57
58
- The h2 library has implemented more of the details of the HTTP/2.0 specification
58
+ The h2 library has implemented more of the details of the HTTP/2 specification
59
59
than any other Rust library. It also passes the [ h2spec] set of tests. The h2
60
60
library is rapidly approaching "production ready" quality.
61
61
0 commit comments