mirror of
https://github.com/tower-rs/tower-http.git
synced 2026-03-14 00:57:56 +00:00
* punt on examples for now * remove dependency on hyper * port to http-body 1.0 * note which types from http_body_util is in our public api * wrap body types * fix some warnings * comment out compression stuff for now * validate-request docs * trace * timeout * set_status * set_header * serve_dir * redirect * follow_redirect * sensitive_headers * request_id * propagate_header * normalize_path * in_flight_requests * map_response_body * map_request_body * limit * lib * cors * classify * add_extension * catch_panic * add_authorization * require_authorization + async_require_authorization * builder * format * fixes * fix docs * fix cargo hack * is this breaking patches in Cargo.toml? * update to 1.0 of dependencies * porting compression like this seems to work \o/ * use `BodyExt::collect` in tests * compression is back! * and thats decompression! * remove hyper specific test * Update examples/axum-key-value-store/src/main.rs Co-authored-by: Jonas Platte <jplatte+git@posteo.de> * bring back client examples * fix doc tests * forgot ServiceBuilderExt * changelog * Fix potential ordering issues with `BodyIntoStream` * don't delegate `is_end_stream` * fix typos * use std::task::ready * uncomment CompressionLayer in examples * Derive default * format * bring back hyper compat test * remove lint. Lets just add this back later. Wanna merge now --------- Co-authored-by: Jonas Platte <jplatte+git@posteo.de>
7 lines
73 B
TOML
7 lines
73 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"tower-http",
|
|
"examples/*",
|
|
]
|