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

Rust implementation of gRPC

Results 61 grpc-rust issues
Sort by recently updated
recently updated
newest added

Hi Stepan, I'm learning Rust by porting some of my Kotlin code over to Rust, and so far it's been a pleasant journey (lots of Googling). I'd like to propose...

Creating multiple servers doesn't increase performance, actually it makes it even worse. Single server is ~3.5 times slower than go's server implementation. Multiple servers (I did 8 per number of...

Similarly how it's done for protobuf

I just wanted to mention that I'd made a minimalist HelloWorld to test this crate out. It's a bit less arcane than the standard gRPC ones included, so if you...

Looking for a rust-like grpc proxy where it can forward endpoints from A -> B but we can modify stuff like headers, etc.

@stepancheg I see that now grpc imports tokio-tls and openssl but doesn't use it anywhere. Users should install openssl to build even they don't want to use TLS. Maybe we...

Using the c++ interop tests built in the grpc core repo, version v1.4.3 ``` ~/grpc$ make interop_client interop_server ~/grpc$ bins/opt/interop_server -port 12345 ``` Using version grpc-rust v0.2.1: ``` ~/rust/grpc-rust/interop$ ../target/debug/grpc-rust-interop-client...

I noticed that httpbis supports using an external event loop with multiple clients (exposed through the client builder interface), but this doesn't seem to be exposed in grpc-rust? It would...

Hi Would you mind adding an example of the recommended way to return an error from a service? Is the `GrpcStatus` private by design (actually, the enum is public, but...