aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorJoel Galenson <jgalenson@google.com>2021-06-21 12:42:49 -0700
committerJoel Galenson <jgalenson@google.com>2021-06-21 12:42:49 -0700
commit8e8acbd61c224df38a367a9cdd30075966860bf9 (patch)
tree657ca28347ca6d074f482a3191123b68375bce20 /Cargo.toml.orig
parent3adce0c03a69c88fc538ff74a98a8a74019819d5 (diff)
downloadgrpcio-8e8acbd61c224df38a367a9cdd30075966860bf9.tar.gz
Test: make Change-Id: I05fd19472fbf556926a0145466f45235e089ab9f
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig21
1 files changed, 14 insertions, 7 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 8938f97..6fecf28 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,6 +1,6 @@
[package]
name = "grpcio"
-version = "0.8.2"
+version = "0.9.0"
edition = "2018"
authors = ["The TiKV Project Developers"]
license = "Apache-2.0"
@@ -17,7 +17,7 @@ autoexamples = false
all-features = true
[dependencies]
-grpcio-sys = { path = "grpc-sys", version = "0.8", default-features = false }
+grpcio-sys = { path = "grpc-sys", version = "0.9", default-features = false }
libc = "0.2"
futures = "0.3"
protobuf = { version = "2.0", optional = true }
@@ -27,7 +27,17 @@ log = "0.4"
parking_lot = "0.11"
[workspace]
-members = ["proto", "benchmark", "compiler", "interop", "tests-and-examples"]
+members = [
+ "proto",
+ "benchmark",
+ "compiler",
+ "health",
+ "interop",
+ "tests-and-examples",
+]
+# Don't include it in workspace to make it possible to use different version of
+# rust-protobuf.
+exclude = ["xtask"]
[features]
default = ["protobuf-codec", "secure", "use-bindgen"]
@@ -39,11 +49,8 @@ openssl-vendored = ["secure", "grpcio-sys/openssl-vendored"]
no-omit-frame-pointer = ["grpcio-sys/no-omit-frame-pointer"]
use-bindgen = ["grpcio-sys/use-bindgen"]
-[profile.release]
-debug = true
-
[badges]
travis-ci = { repository = "tikv/grpc-rs" }
[patch.crates-io]
-grpcio-compiler = { path = "compiler", version = "0.8.0", default-features = false }
+grpcio-compiler = { path = "compiler", version = "0.9.0", default-features = false }