diff --git a/Cargo.lock b/Cargo.lock index 779ee999d..98baacbe6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -521,7 +521,7 @@ dependencies = [ "time", "tokio", "tokio-stream", - "tonic", + "tonic 0.10.0", "tower", "tower-http 0.4.4", "tracing", @@ -1685,7 +1685,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4b459b0f2ec8bc8434b8f4c0f70f91221738f7892f00150d15dc7edc075f70a0" dependencies = [ "prost", - "tonic", + "tonic 0.8.3", "tonic-build", ] @@ -3504,6 +3504,25 @@ dependencies = [ "tracing-futures", ] +[[package]] +name = "tonic" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5469afaf78a11265c343a88969045c1568aa8ecc6c787dbf756e92e70f199861" +dependencies = [ + "base64 0.21.4", + "bytes", + "http", + "http-body", + "percent-encoding", + "pin-project", + "tokio", + "tokio-stream", + "tower-layer", + "tower-service", + "tracing", +] + [[package]] name = "tonic-build" version = "0.8.4" diff --git a/Cargo.toml b/Cargo.toml index e3a37120c..09c6b4249 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -73,7 +73,7 @@ zeroize = { version = "1.5", default-features = false, features = [ "std", "zero # INX inx = { version = "1.0.0-beta.8", default-features = false, optional = true } -tonic = { version = "0.8", default-features = false, optional = true } +tonic = { version = "0.10", default-features = false, optional = true } [dev-dependencies] bincode = { version = "1.3", default-features = false }