forked from tikv/grpc-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (46 loc) · 1.33 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "grpcio"
version = "0.1.0"
authors = ["The TiKV Project Developers"]
license = "Apache-2.0"
keywords = ["grpc", "protobuf", "rpc", "tls", "http2"]
repository = "https://github.com/pingcap/grpc-rs"
readme = "README.md"
homepage = "https://github.com/pingcap/grpc-rs"
documentation = "https://docs.rs/grpcio"
description = "The rust language implementation of gRPC, base on the gRPC c core library."
categories = ["asynchronous", "network-programming"]
[dependencies]
grpcio-sys = { path = "grpc-sys", version = "0.1.0" }
libc = "0.2"
futures = "^0.1.14"
protobuf = { version = "1.2", optional = true }
[workspace]
members = ["proto", "benchmark", "compiler", "interop"]
[features]
default = ["protobuf-codec"]
protobuf-codec = ["protobuf"]
link-sys = ["grpcio-sys/link-sys"]
[[example]]
name = "route_guide_client"
path = "examples/route_guide/client.rs"
[[example]]
name = "route_guide_server"
path = "examples/route_guide/server.rs"
[[example]]
name = "greeter_client"
path = "examples/hello_world/client.rs"
[[example]]
name = "greeter_server"
path = "examples/hello_world/server.rs"
[dev-dependencies]
serde_json = "1.0"
serde = "1.0"
serde_derive = "1.0"
grpcio-proto = { path = "proto" }
rand = "0.3"
[profile.release]
debug = true
[badges]
travis-ci = { repository = "pingcap/grpc-rs" }
appveyor = { repository = "busyjay/grpc-rs" }