commit | 558250f526bae0fc0ac68c921f9c8f10ab46bc4e | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Tue Aug 27 23:12:30 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue Aug 27 23:12:30 2024 +0000 |
tree | 2fce3982057b036729fb0173ac4bed03ec449cbe | |
parent | 1401fdecbde916cb1f295d3a7552d52cbe4c3231 [diff] | |
parent | 4c1971230e1f8cf82882d89c846460cc0a3e6280 [diff] |
Migrate 25 crates to monorepo. am: 86179b2bd7 am: 4c1971230e Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/h2/+/3242569 Change-Id: I0c65d33555b2e920b66442c9cee653954123414e Signed-off-by: Automerger Merge Worker <[email protected]>
A Tokio aware, HTTP/2 client & server implementation for Rust.
More information about this crate can be found in the crate documentation.
This crate is intended to only be an implementation of the HTTP/2 specification. It does not handle:
This crate is now used by hyper, which will provide all of these features.
To use h2
, first add this to your Cargo.toml
:
[dependencies] h2 = "0.4"
Next, add this to your crate:
extern crate h2; use h2::server::Connection; fn main() { // ... }
How does h2 compare to solicit or rust-http2?
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.
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.