Skip to content

Commit 675062d

Browse files
committed
change grpcio version
Signed-off-by: Ping Yu <[email protected]>
1 parent 1e2a243 commit 675062d

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
@@ -40,7 +40,7 @@ either = "1.6"
4040
fail = "0.4"
4141
futures = { version = "0.3", features = ["async-await", "thread-pool"] }
4242
futures-timer = "3.0"
43-
grpcio = { version = "0.10.4", features = [ "openssl-vendored" ], default-features = false }
43+
grpcio = { version = "0.10", features = [ "openssl-vendored" ], default-features = false }
4444
lazy_static = "1"
4545
log = "0.4"
4646
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
@@ -10,6 +10,6 @@ prost-codec = ["grpcio/prost-codec"]
1010
[dependencies]
1111
derive-new = "0.5"
1212
futures = "0.3"
13-
grpcio = { version = "0.10.4", default-features = false }
13+
grpcio = { version = "0.10", default-features = false }
1414
log = "0.4"
1515
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
@@ -14,7 +14,7 @@ prost-codec = ["grpcio/prost-codec"]
1414
[dependencies]
1515
thiserror = "1"
1616
futures = { version = "0.3", features = ["compat", "async-await", "thread-pool"] }
17-
grpcio = { version = "0.10.4", default-features = false }
17+
grpcio = { version = "0.10", default-features = false }
1818
lazy_static = "1"
1919
log = "0.4"
2020
regex = "1"

tikv-client-pd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ prost-codec = ["grpcio/prost-codec"]
1414
[dependencies]
1515
async-trait = "0.1"
1616
futures = { version = "0.3", features = ["compat", "async-await", "thread-pool"] }
17-
grpcio = { version = "0.10.4", default-features = false }
17+
grpcio = { version = "0.10", default-features = false }
1818
log = "0.4"
1919
tikv-client-common = { version = "0.1.0", path = "../tikv-client-common" }
2020
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
@@ -20,6 +20,6 @@ protobuf = "=2.8.0"
2020
prost = { version = "0.9", optional = true }
2121
prost-derive = { version = "0.9", optional = true }
2222
futures = "0.3"
23-
grpcio = { version = "0.10.4", default-features = false }
23+
grpcio = { version = "0.10", default-features = false }
2424
lazy_static = { version = "1" }
2525
raft-proto = { version = "0.7.0", default-features = false }

tikv-client-store/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ prost-codec = ["grpcio/prost-codec"]
1515
async-trait = "0.1"
1616
derive-new = "0.5"
1717
futures = { version = "0.3", features = ["compat", "async-await", "thread-pool"] }
18-
grpcio = { version = "0.10.4", default-features = false }
18+
grpcio = { version = "0.10", default-features = false }
1919
log = "0.4"
2020
tikv-client-common = { version = "0.1.0", path = "../tikv-client-common" }
2121
tikv-client-proto = { version = "0.1.0", path = "../tikv-client-proto" }

0 commit comments

Comments
 (0)