grpc-rust

Rust implementation of gRPC

Github星跟蹤圖

grpc-rust

Build Status
License
crates.io

Rust implementation of gRPC protocol, under development.

Some development questions in FAQ.

Current status

It basically works. See grpc-examples/src/bin/greeter_{client,server}.rs. It can be tested
for example with go client:

# start greeter server implemented in rust
$ cargo run --bin greeter_server

# ... or start greeter server implemented in go
$ go get -u google.golang.org/grpc/examples/helloworld/greeter_client
$ greeter_server

# start greeter client implemented in rust
$ cargo run --bin greeter_client rust
> message: "Hello rust"

# ... or start greeter client implemented in go
$ go get -u google.golang.org/grpc/examples/helloworld/greeter_client
$ greeter_client rust
> 2016/08/19 05:44:45 Greeting: Hello rust

Client and server are implemented asynchronously.

How to generate rust code

There are two ways to generate rust code from .proto files

Invoke protoc programmatically with protoc-rust-grpc crate

(Recommended)

Have a look at readme in
protoc-rust-grpc crate.

With protoc command and protoc-gen-rust-grpc plugin

Readme

Use generated protos in your project:

In Cargo.toml:

[dependencies]
grpc            = "~0.6"
protobuf        = "~2"
futures         = "~0.1"
futures-cpupool = "~0.1"

[build-dependencies]
protoc-rust-grpc = "0.6.1"

In lib.rs or main.rs (or any other submodule):

extern crate protobuf;
extern crate grpc;
extern crate futures;
extern crate futures_cpupool;

pub mod myproto;
pub mod myproto_grpc;

TODO

  • Fix performance
  • More tests
  • In particular, add more compatibility tests, they live in interop directory
  • Fix all TODO in sources
  • grpc-rs — alternative implementation of gRPC in Rust,
    a wrapper to C++ implementation
  • httpbis — implementation of HTTP/2,
    which is used by this implementation of gRPC
  • rust-protobuf — implementation of Google Protocol Buffers

主要指標

概覽
名稱與所有者stepancheg/grpc-rust
主編程語言Rust
編程語言Rust (語言數: 3)
平台
許可證MIT License
所有者活动
創建於2015-06-28 19:26:35
推送於2024-04-08 23:37:29
最后一次提交2024-04-09 00:37:29
發布數24
最新版本名稱v0.8.3 (發布於 )
第一版名稱v0.1.2 (發布於 )
用户参与
星數1.4k
關注者數31
派生數124
提交數682
已啟用問題?
問題數138
打開的問題數59
拉請求數33
打開的拉請求數1
關閉的拉請求數28
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?