update to hyper 1.0
is it possible to update this to the 1.0 release of hyper or does this crate rely on features that got removed?
I don't think there is anything blocking this crate from getting updated. However, it is a dependency of the github.com/launchdarkly/rust-server-sdk and would likely result in some large (and breaking) changes on that side. As a result, making that update hasn't yet been made a top priority.
For people who want to use sse client with hyper 1.0, you could have a look on this simple decoder crate: sse-stream
You can use this crate with a reqwest client, and here is a example how I use this little crate to create a MCP SSE client. https://github.com/4t145/rmcp/blob/dev/crates/rmcp/src/transport/sse.rs
And in the tests, you also can get examples to use this with reqwest or raw hyper