There's no such thing as HTTP/2.0
This commit is contained in:
@@ -11,7 +11,7 @@ authors = [
|
||||
"Carl Lerche <me@carllerche.com>",
|
||||
"Sean McArthur <sean@seanmonstar.com>",
|
||||
]
|
||||
description = "An HTTP/2.0 client and server"
|
||||
description = "An HTTP/2 client and server"
|
||||
documentation = "https://docs.rs/h2"
|
||||
repository = "https://github.com/hyperium/h2"
|
||||
readme = "README.md"
|
||||
|
||||
12
README.md
12
README.md
@@ -1,6 +1,6 @@
|
||||
# H2
|
||||
|
||||
A Tokio aware, HTTP/2.0 client & server implementation for Rust.
|
||||
A Tokio aware, HTTP/2 client & server implementation for Rust.
|
||||
|
||||
[](https://opensource.org/licenses/MIT)
|
||||
[](https://crates.io/crates/h2)
|
||||
@@ -12,21 +12,21 @@ More information about this crate can be found in the [crate documentation][dox]
|
||||
|
||||
## Features
|
||||
|
||||
* Client and server HTTP/2.0 implementation.
|
||||
* Implements the full HTTP/2.0 specification.
|
||||
* Client and server HTTP/2 implementation.
|
||||
* Implements the full HTTP/2 specification.
|
||||
* Passes [h2spec](https://github.com/summerwind/h2spec).
|
||||
* Focus on performance and correctness.
|
||||
* Built on [Tokio](https://tokio.rs).
|
||||
|
||||
## Non goals
|
||||
|
||||
This crate is intended to only be an implementation of the HTTP/2.0
|
||||
This crate is intended to only be an implementation of the HTTP/2
|
||||
specification. It does not handle:
|
||||
|
||||
* Managing TCP connections
|
||||
* HTTP 1.0 upgrade
|
||||
* TLS
|
||||
* Any feature not described by the HTTP/2.0 specification.
|
||||
* Any feature not described by the HTTP/2 specification.
|
||||
|
||||
This crate is now used by [hyper](https://github.com/hyperium/hyper), which will provide all of these features.
|
||||
|
||||
@@ -55,7 +55,7 @@ fn main() {
|
||||
|
||||
**How does h2 compare to [solicit] or [rust-http2]?**
|
||||
|
||||
The h2 library has implemented more of the details of the HTTP/2.0 specification
|
||||
The h2 library has implemented more of the details of the HTTP/2 specification
|
||||
than any other Rust library. It also passes the [h2spec] set of tests. The h2
|
||||
library is rapidly approaching "production ready" quality.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user