Kaz Yoshihara
Kaz Yoshihara
Adds `WebSocketStream::from_raw_socket_with_compression` to enable compression without handshake for crates like `warp` and `axum`. See https://github.com/snapview/tungstenite-rs/pull/235
I'm working on https://github.com/seanmonstar/warp/issues/770 and noticed this is missing.
- Adds de/compression logic on top of the existing flow, requiring minimal changes. Shouldn't have any _major_ breaking changes. - `client_max_window_bits`/`server_max_window_bits` are not supported at the moment because that requires...
## Motivation Add proxy support. The default client should support enabling proxy with environment variables (`HTTPS_PROXY`, `HTTP_PROXY`) or `config.proxy_url`. Custom clients should be able to do the same. ## Solution...
This issue keeps track of tasks related to improving errors in `kube`. Currently, `kube::Error` is a huge `enum` containing all the possible errors, and many error variants don't provide any...
https://docs.rs/kube/ only shows `doc_cfg` hints from `kube` because of known bugs: - https://github.com/rust-lang/rust/issues/83428 - https://github.com/rust-lang/rust/issues/88743 Maybe we should add notes like `/// Required features: ws`
Testing utilities for kube. Includes `TestEnv` to create a temporary k3d cluster per test. Closes #382 ### TODO - [ ] docs - [ ] add some tests after #563...
### Describe the bug `sl-select` component inside `sl-drawer` is extremely slow since `2.0.0-beta.81`. `sl-select` is broken inside `sl-drawer` in `2.0.0-beta.80`. `2.0.0-beta.79` works as expected. It's very noticeable with many items....
Depends on https://github.com/snapview/tungstenite-rs/pull/328 and https://github.com/snapview/tokio-tungstenite/pull/251 which in turn depends on https://github.com/hyperium/headers/pull/88. --- Closes #770.
Supersedes #190. Adds `WebSocketStream::from_raw_socket_with_extensions` to enable compression without handshake for crates like `warp` and `axum` ([`warp` integration](https://github.com/seanmonstar/warp/compare/master...kazk:warp:feature/permessage-deflate?expand=1)). - [ ] https://github.com/snapview/tungstenite-rs/pull/328