Skip to content

Commit 8602cdb

Browse files
authored
update grpcio to 0.9 (#295)
Signed-off-by: ekexium <ekexium@gmail.com>
1 parent 3f1ec8e commit 8602cdb

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ derive-new = "0.5"
2323
fail = "0.4"
2424
futures = { version = "0.3", features = ["async-await", "thread-pool"] }
2525
futures-timer = "3.0"
26-
grpcio = { version = "0.8", features = [ "secure", "prost-codec", "use-bindgen", "openssl-vendored" ], default-features = false }
26+
grpcio = { version = "0.9", features = [ "secure", "prost-codec", "use-bindgen", "openssl-vendored" ], default-features = false }
2727
lazy_static = "1"
2828
log = "0.4"
2929
prometheus = { version = "0.12", features = [ "push", "process" ], default-features = false }

mock-tikv/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ edition = "2018"
66
[dependencies]
77
derive-new = "0.5"
88
futures = "0.3"
9-
grpcio = { version = "0.8", features = [ "secure", "prost-codec", "use-bindgen" ], default-features = false }
9+
grpcio = { version = "0.9", features = [ "secure", "prost-codec", "use-bindgen" ], default-features = false }
1010
log = "0.4"
1111
tikv-client-proto = { path = "../tikv-client-proto"}

tikv-client-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description = "Common components of the TiKV Rust client"
1010
[dependencies]
1111
thiserror = "1"
1212
futures = { version = "0.3", features = ["compat", "async-await", "thread-pool"] }
13-
grpcio = { version = "0.8", features = [ "secure", "prost-codec", "use-bindgen" ], default-features = false }
13+
grpcio = { version = "0.9", features = [ "secure", "prost-codec", "use-bindgen" ], default-features = false }
1414
lazy_static = "1"
1515
log = "0.4"
1616
regex = "1"

tikv-client-pd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description = "Low level PD components for the TiKV Rust client"
1010
[dependencies]
1111
async-trait = "0.1"
1212
futures = { version = "0.3", features = ["compat", "async-await", "thread-pool"] }
13-
grpcio = { version = "0.8", features = [ "secure", "prost-codec", "use-bindgen" ], default-features = false }
13+
grpcio = { version = "0.9", features = [ "secure", "prost-codec", "use-bindgen" ], default-features = false }
1414
log = "0.4"
1515
tikv-client-common = { version = "0.1.0", path = "../tikv-client-common" }
1616
tikv-client-proto = { version = "0.1.0", path = "../tikv-client-proto" }

tikv-client-proto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ protobuf = "2.8"
1616
prost = { version = "0.7" }
1717
prost-derive = { version = "0.7" }
1818
futures = "0.3"
19-
grpcio = { version = "0.8", default-features = false, features = ["secure", "prost-codec", "use-bindgen"] }
19+
grpcio = { version = "0.9", default-features = false, features = ["secure", "prost-codec", "use-bindgen"] }
2020
lazy_static = { version = "1" }

tikv-client-store/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description = "Low level TiKV node components of the TiKV Rust client"
1111
async-trait = "0.1"
1212
derive-new = "0.5"
1313
futures = { version = "0.3", features = ["compat", "async-await", "thread-pool"] }
14-
grpcio = { version = "0.8", features = ["secure", "prost-codec", "use-bindgen"], default-features = false }
14+
grpcio = { version = "0.9", features = ["secure", "prost-codec", "use-bindgen"], default-features = false }
1515
log = "0.4"
1616
tikv-client-common = { version = "0.1.0", path = "../tikv-client-common" }
1717
tikv-client-proto = { version = "0.1.0", path = "../tikv-client-proto" }

0 commit comments

Comments
 (0)