-
Notifications
You must be signed in to change notification settings - Fork 135
Comparing changes
Open a pull request
base repository: hyperium/hyper-util
base: v0.1.10
head repository: hyperium/hyper-util
compare: v0.1.11
- 17 commits
- 15 files changed
- 12 contributors
Commits on Oct 30, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 753aab2 - Browse repository at this point
Copy the full SHA 753aab2View commit details
Commits on Nov 16, 2024
-
chore(ci): Use hashbrown 0.15.0 in MSRV check (#158)
* chore(ci): Use hashbrown 0.15.0 in MSRV check * chore(ci): Use stable rust to resolve dependency
Configuration menu - View commit details
-
Copy full SHA for 8af8591 - Browse repository at this point
Copy the full SHA 8af8591View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7a39c88 - Browse repository at this point
Copy the full SHA 7a39c88View commit details
Commits on Dec 6, 2024
-
refactor: remove legacy::client workaround for fixed race condition i…
…n mpsc channel (#159) Co-authored-by: JESS IZEN <jlizen@amazon.com>
Configuration menu - View commit details
-
Copy full SHA for dce81a0 - Browse repository at this point
Copy the full SHA dce81a0View commit details
Commits on Dec 31, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 5f055e3 - Browse repository at this point
Copy the full SHA 5f055e3View commit details
Commits on Jan 28, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 0c402d8 - Browse repository at this point
Copy the full SHA 0c402d8View commit details -
feat(server): expose methods for determining if HTTP/1.1 or HTTP/2 su…
…pport are enabled (#164)
Configuration menu - View commit details
-
Copy full SHA for 26e1e15 - Browse repository at this point
Copy the full SHA 26e1e15View commit details
Commits on Jan 30, 2025
-
feat(server): support
auto_date_header
, `max_local_error_reset_stre……ams`, and `ignore_invalid_headers`. (#161)
Configuration menu - View commit details
-
Copy full SHA for 46826ea - Browse repository at this point
Copy the full SHA 46826eaView commit details
Commits on Feb 19, 2025
-
Configuration menu - View commit details
-
Copy full SHA for b90ff7d - Browse repository at this point
Copy the full SHA b90ff7dView commit details
Commits on Feb 20, 2025
-
chore(tokio): warn on dead code (#168)
there is a module-wide allowance for dead code that seems to be a holdover from when this was initially being written. removing this does not unearth any warnings, and ideally any future additions can be explicitly, and more narrowly, annotated accordingly if need be. Signed-off-by: katelyn martin <me+cratelyn@katelyn.world>
Configuration menu - View commit details
-
Copy full SHA for 1290685 - Browse repository at this point
Copy the full SHA 1290685View commit details
Commits on Feb 21, 2025
-
chore(client/legacy): remove unused
PoolClient::is_closed()
(#169)this function is not used, and a warning is observed when this crate is built with e.g. `--all-features`. this commit removes this unused method from the `PoolClient<B>` type. Signed-off-by: katelyn martin <me+cratelyn@katelyn.world>
Configuration menu - View commit details
-
Copy full SHA for d51318d - Browse repository at this point
Copy the full SHA d51318dView commit details
Commits on Mar 21, 2025
-
Configuration menu - View commit details
-
Copy full SHA for ef35d8a - Browse repository at this point
Copy the full SHA ef35d8aView commit details -
feat(rt/tokio): additive tokio and hyper i/o adaptors (#170)
this commit introduces two new i/o adaptors, akin to `rt::tokio::TokioIo<I>`. see this small program demonstrating the motivation for this: ```rust #![allow(unreachable_code, unused_variables, dead_code)] use { hyper::rt::{Read, Write}, hyper_util::rt::TokioIo, tokio::io::{AsyncRead, AsyncWrite}, tokio::net::TcpStream, }; fn is_tokio_io<I>(_: &I) where I: AsyncRead + AsyncWrite, { } fn is_hyper_io<I>(_: &I) where I: Read + Write, { } fn check_io_impls() { // `I: AsyncRead + AsyncWrite` does not implement hyper's `Read` and `Write`. let stream: TcpStream = todo!(); is_tokio_io(&stream); // is_hyper_io(&stream); does not compile // `TokioIo<I: AsyncRead + AsyncWrite>` does not implement `tokio::io` traits. let stream: TokioIo<TcpStream> = TokioIo::new(stream); // is_tokio_io(&stream); does not compile is_hyper_io(&stream); // `TokioIo<TokioIo<I: AsyncRead + AsyncWrite>>` does not implement hyper's `Read` and `Write`. let stream: TokioIo<TokioIo<TcpStream>> = TokioIo::new(stream); is_tokio_io(&stream); // is_hyper_io(&stream); does not compile } fn main() {} ``` `TokioIo<I>` is not an adaptor that is additive with respect to its inner i/o transport. if it implements hyper's i/o, the wrapped type will implement tokio's _at the expense of hyper's_, and vice versa. this is often fine for simple programs, but this "switching" approach can interfere with larger applications' ability to make use of middleware that is generic across different kinds of i/o streams. this commit introduces types that allow a caller to _add_ `Read` or `Write` implementations to tokio readers and writers, or inversely, `AsyncRead` and `AsyncWrite` implementations to hyper readers and writers. Signed-off-by: katelyn martin <me+cratelyn@katelyn.world>
Configuration menu - View commit details
-
Copy full SHA for 94afd50 - Browse repository at this point
Copy the full SHA 94afd50View commit details
Commits on Mar 31, 2025
-
Configuration menu - View commit details
-
Copy full SHA for dc03ad4 - Browse repository at this point
Copy the full SHA dc03ad4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5831ace - Browse repository at this point
Copy the full SHA 5831aceView commit details -
Configuration menu - View commit details
-
Copy full SHA for 486e3b6 - Browse repository at this point
Copy the full SHA 486e3b6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4c4e062 - Browse repository at this point
Copy the full SHA 4c4e062View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v0.1.10...v0.1.11