rsocket-rust icon indicating copy to clipboard operation
rsocket-rust copied to clipboard

RSocket Rust Implementation using Tokio

Results 4 rsocket-rust issues
Sort by recently updated
recently updated
newest added

Use WASI Socket to talk with RSocket service, and spec is here https://docs.rs/wasi/0.9.0+wasi-snapshot-preview1/wasi/

enhancement

correct rsocket_rust dependencies path. ### Motivation: then can specify a certain commit in dependencies in Cargo.toml for other project. ``` [dependencies] rsocket_rust = { git = "https://github.com/huahouye/rsocket-rust.git", rev = "a0b180b"...

System Version: Windows 11 home rsocket version: rsocket_rust = "0.7.2" rsocket_rust_transport_tcp = "0.7.2" Compilation time error: ``` error[E0432]: unresolved import `tokio::net::UnixStream` use tokio::net::UnixStream; | ^^^^^^^^^^^^^^^^^^^^^^ no `UnixStream` in `net` ```

bug

The function definition for channel is this `fn request_channel(&self, reqs: Flux) -> Flux` where flux is defined as `Flux = Pin;` To request a channel it is required to put...

question