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

TLS client paniced, i had try the greeter demo, the client paniced with a unimpl error. https://github.com/stepancheg/grpc-rust/blob/master/grpc/src/client/mod.rs:104 ``` let (host, port) = match self.client_type { ClientBuilderType::Tcp { host, port }...

When I transfer more than 25000bytes of data and more, the server will freeze without any error, the server's excuse will respond but there is no output or execution. not...

It terminates with `Err(Http(ClientDied(None)))`. though after some debugging (see: https://github.com/stepancheg/rust-http2/issues/40 ) it turns out to be simple an expire cert. ``` % cargo run --bin greeter_client -- --tls warning: field...

> error[E0053]: method `read` has an incompatible type for trait > --> grpc-protobuf/src/lib.rs:25:5 > | > 25 | fn read(&self, buf: Bytes) -> grpc::Result { > | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected struct...

Excellent work! @stepancheg What's the status of the project ? We want to use gRPC in our project [TiKV](https://github.com/pingcap/tikv), and we can help you to test the project.

The code in *grpc-rust/protoc-rust-grpc/Readme.md* seems out of date: ```rust fn main() { protoc_rust_grpc::run(protoc_rust_grpc::Args { out_dir: "src", includes: &["proto"], input: &["proto/aaa.proto", "proto/bbb.proto"], rust_protobuf: true, // also generate protobuf messages, not just...

On Windows the GRPC client doesn't close its opened TCP connections on drop, only after the client process ends. Trying to reproduce this, I created a slightly modified version of...

My question is similar to these: [https://github.com/grpc/grpc/issues/8023](https://github.com/grpc/grpc/issues/8023) [https://github.com/grpc/grpc-java/issues/3095](https://github.com/grpc/grpc-java/issues/3095) I have a streaming call that is being processed by a client that I want to interrupt partway through. What is the...

I plan to use this library from js in a web app. Is it possible to use this over websockets, like this? https://github.com/tmc/grpc-websocket-proxy https://github.com/grpc/grpc-experiments/issues/159