aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorLudovic Barman <ludovicb@google.com>2023-10-26 12:59:04 +0000
committerLudovic Barman <ludovicb@google.com>2023-10-26 12:59:04 +0000
commitd78e7ecf27e2d1bd8ce3566c13acc3463793c1b1 (patch)
tree913d6a34b52bc172249d21ca8614e1c9394394dd /Cargo.toml.orig
parente55ac28d7684e00e58f2fe698c0aacc28250aefd (diff)
downloadgrpcio-d78e7ecf27e2d1bd8ce3566c13acc3463793c1b1.tar.gz
Upgrade grpcio to 0.13.0
This project was upgraded with external_updater. Usage: tools/external_updater/updater.sh update rust/crates/grpcio For more info, check https://cs.android.com/android/platform/superproject/+/main:tools/external_updater/README.md Test: TreeHugger Change-Id: I9c3e5650701c9eced41ccd1a0ff85efb9c6f2664
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig8
1 files changed, 5 insertions, 3 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 68067cf..2334a42 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,6 +1,6 @@
[package]
name = "grpcio"
-version = "0.12.1"
+version = "0.13.0"
edition = "2018"
authors = ["The TiKV Project Developers"]
license = "Apache-2.0"
@@ -17,11 +17,12 @@ autoexamples = false
all-features = true
[dependencies]
-grpcio-sys = { path = "grpc-sys", version = "0.12.1", default-features = false }
+grpcio-sys = { path = "grpc-sys", version = "0.13.0", default-features = false }
libc = "0.2"
futures-executor = "0.3"
futures-util = { version = "0.3", default-features = false, features = ["std", "sink"] }
protobuf = { version = "2.0", optional = true }
+protobufv3 = { package = "protobuf", version = "3.2", optional = true }
prost = { version = "0.11", optional = true }
bytes = { version = "1.0", optional = true }
log = "0.4"
@@ -44,6 +45,7 @@ exclude = ["xtask"]
default = ["protobuf-codec", "boringssl"]
_secure = []
protobuf-codec = ["protobuf"]
+protobufv3-codec = ["protobufv3"]
prost-codec = ["prost", "bytes"]
nightly = []
boringssl = ["grpcio-sys/boringssl", "_secure"]
@@ -55,4 +57,4 @@ no-omit-frame-pointer = ["grpcio-sys/no-omit-frame-pointer"]
travis-ci = { repository = "tikv/grpc-rs" }
[patch.crates-io]
-grpcio-compiler = { path = "compiler", version = "0.12.1", default-features = false }
+grpcio-compiler = { path = "compiler", version = "0.13.0" }