gitextract_tk80unb4/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ └── feature_request.md │ ├── PULL_REQUEST_TEMPLATE │ └── workflows/ │ ├── CI.yml │ ├── bench.yml │ ├── cargo-audit.yml │ └── external-types.toml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE ├── README.md ├── SECURITY.md ├── benches/ │ ├── body.rs │ ├── connect.rs │ ├── end_to_end.rs │ ├── pipeline.rs │ ├── server.rs │ └── support/ │ ├── mod.rs │ └── tokiort.rs ├── capi/ │ ├── README.md │ ├── cbindgen.toml │ ├── examples/ │ │ ├── Makefile │ │ ├── client.c │ │ └── upload.c │ ├── gen_header.sh │ └── include/ │ └── hyper.h ├── docs/ │ ├── CODE_OF_CONDUCT.md │ ├── CODE_STYLE.md │ ├── COMMITS.md │ ├── GOVERNANCE.md │ ├── ISSUES.md │ ├── MAINTAINERS.md │ ├── MSRV.md │ ├── PULL_REQUESTS.md │ ├── README.md │ ├── ROADMAP-1.0.md │ ├── ROADMAP.md │ ├── TENETS.md │ └── VISION.md ├── examples/ │ ├── README.md │ ├── client.rs │ ├── client_json.rs │ ├── echo.rs │ ├── gateway.rs │ ├── graceful_shutdown.rs │ ├── hello-http2.rs │ ├── hello.rs │ ├── http_proxy.rs │ ├── multi_server.rs │ ├── params.rs │ ├── send_file.rs │ ├── send_file_index.html │ ├── service_struct_impl.rs │ ├── single_threaded.rs │ ├── state.rs │ ├── upgrades.rs │ └── web_api.rs ├── src/ │ ├── body/ │ │ ├── incoming.rs │ │ ├── length.rs │ │ └── mod.rs │ ├── cfg.rs │ ├── client/ │ │ ├── conn/ │ │ │ ├── http1.rs │ │ │ ├── http2.rs │ │ │ └── mod.rs │ │ ├── dispatch.rs │ │ ├── mod.rs │ │ └── tests.rs │ ├── common/ │ │ ├── buf.rs │ │ ├── date.rs │ │ ├── either.rs │ │ ├── future.rs │ │ ├── io/ │ │ │ ├── compat.rs │ │ │ ├── mod.rs │ │ │ └── rewind.rs │ │ ├── mod.rs │ │ ├── task.rs │ │ ├── time.rs │ │ └── watch.rs │ ├── error.rs │ ├── ext/ │ │ ├── h1_reason_phrase.rs │ │ ├── informational.rs │ │ └── mod.rs │ ├── ffi/ │ │ ├── body.rs │ │ ├── client.rs │ │ ├── error.rs │ │ ├── http_types.rs │ │ ├── io.rs │ │ ├── macros.rs │ │ ├── mod.rs │ │ └── task.rs │ ├── headers.rs │ ├── lib.rs │ ├── mock.rs │ ├── proto/ │ │ ├── h1/ │ │ │ ├── conn.rs │ │ │ ├── decode.rs │ │ │ ├── dispatch.rs │ │ │ ├── encode.rs │ │ │ ├── io.rs │ │ │ ├── mod.rs │ │ │ └── role.rs │ │ ├── h2/ │ │ │ ├── client.rs │ │ │ ├── mod.rs │ │ │ ├── ping.rs │ │ │ ├── server.rs │ │ │ └── upgrade.rs │ │ └── mod.rs │ ├── rt/ │ │ ├── bounds.rs │ │ ├── io.rs │ │ ├── mod.rs │ │ └── timer.rs │ ├── server/ │ │ ├── conn/ │ │ │ ├── http1.rs │ │ │ ├── http2.rs │ │ │ └── mod.rs │ │ └── mod.rs │ ├── service/ │ │ ├── http.rs │ │ ├── mod.rs │ │ ├── service.rs │ │ └── util.rs │ ├── trace.rs │ └── upgrade.rs └── tests/ ├── client.rs ├── integration.rs ├── server.rs └── support/ ├── mod.rs └── trailers.rs