Teoh Han Hui

Results 98 issues of Teoh Han Hui

The claim at https://github.com/algesten/str0m#can-i-utilize-str0m-with-any-rust-async-runtime: > Can I utilize str0m with any Rust async runtime? > > Absolutely! str0m is fully sync, ensuring that it integrates seamlessly with any Rust async...

`CertifiedKey` reads like "a key that is (somehow) certified", when we actually mean "a certificate together with the key(pair) used to sign it". Perhaps `CertificateWithKey` would be fine?

This will not work until the following upstream changes happen: - [ ] `std` needs to expose what's needed by `tokio`'s `"net"` feature: https://github.com/rust-lang/rust/issues/130323#issuecomment-2350379144 - [ ] `tokio` needs to...

Specifically this part of the comment: > ... does not drain messages that are buffered. from https://github.com/johanhelsing/matchbox/blob/1fd448dd1dfd6195e3cd6f57564dfd1800bf704e/matchbox_socket/src/webrtc_socket/socket.rs#L318-L325 Runs counter to what is specified in the WebRTC spec: > 5. Run...

We already have `id_rx` in `WebRtcSocket`. Unfortunately it's not being exposed in any way, other than through a sync wrapper (`WebRtcSocket::id` method). This is a problem for async code, because...

https://dotnet.microsoft.com/en-us/download/dotnet/6.0 The current oldest LTS version is .NET 8.0: https://dotnet.microsoft.com/en-us/download/dotnet/8.0 `avdump3` build 8293 doesn't work with .NET 8.0: ``` $ avdump3 --help You must install or update .NET to run...

If you have in `diesel.toml`: ```toml [print_schema] file = "src/schema.rs" schema = "foo" ``` And you do: ```sh diesel print-schema > src/schema.rs ``` You'd get in `src/schema.rs`: ```rust pub mod...