aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorIvan Lozano <ivanlozano@google.com>2023-06-21 17:06:09 +0000
committerKrzysztof KosiƄski <krzysio@google.com>2023-10-18 05:35:06 +0000
commite55ac28d7684e00e58f2fe698c0aacc28250aefd (patch)
treee7e603c24ee7d164050a19a1681ceb72d551e651 /Cargo.toml.orig
parent17e8ae334b081694e9b2bc921c7cce82aec58744 (diff)
downloadgrpcio-e55ac28d7684e00e58f2fe698c0aacc28250aefd.tar.gz
Update grpcio crate to 0.12.1
Cloned from aosp/2634909 Bug: 266055490 Test: mm Change-Id: Icf6426ec8450e739618154885061f4e468f12238
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig24
1 files changed, 13 insertions, 11 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 9755697..68067cf 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,6 +1,6 @@
[package]
name = "grpcio"
-version = "0.9.1"
+version = "0.12.1"
edition = "2018"
authors = ["The TiKV Project Developers"]
license = "Apache-2.0"
@@ -17,14 +17,15 @@ autoexamples = false
all-features = true
[dependencies]
-grpcio-sys = { path = "grpc-sys", version = "0.9", default-features = false }
+grpcio-sys = { path = "grpc-sys", version = "0.12.1", default-features = false }
libc = "0.2"
-futures = "0.3"
+futures-executor = "0.3"
+futures-util = { version = "0.3", default-features = false, features = ["std", "sink"] }
protobuf = { version = "2.0", optional = true }
-prost = { version = "0.7", optional = true }
+prost = { version = "0.11", optional = true }
bytes = { version = "1.0", optional = true }
log = "0.4"
-parking_lot = "0.11"
+parking_lot = "0.12"
[workspace]
members = [
@@ -40,17 +41,18 @@ members = [
exclude = ["xtask"]
[features]
-default = ["protobuf-codec", "secure", "use-bindgen"]
+default = ["protobuf-codec", "boringssl"]
+_secure = []
protobuf-codec = ["protobuf"]
prost-codec = ["prost", "bytes"]
-secure = ["grpcio-sys/secure"]
-openssl = ["secure", "grpcio-sys/openssl"]
-openssl-vendored = ["secure", "grpcio-sys/openssl-vendored"]
+nightly = []
+boringssl = ["grpcio-sys/boringssl", "_secure"]
+openssl = ["_secure", "grpcio-sys/openssl"]
+openssl-vendored = ["_secure", "grpcio-sys/openssl-vendored"]
no-omit-frame-pointer = ["grpcio-sys/no-omit-frame-pointer"]
-use-bindgen = ["grpcio-sys/use-bindgen"]
[badges]
travis-ci = { repository = "tikv/grpc-rs" }
[patch.crates-io]
-grpcio-compiler = { path = "compiler", version = "0.9.0", default-features = false }
+grpcio-compiler = { path = "compiler", version = "0.12.1", default-features = false }