diff --git a/Cargo.lock b/Cargo.lock index d226e51a3..832466a59 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -523,7 +523,7 @@ dependencies = [ "time", "tokio", "tokio-stream", - "tonic", + "tonic 0.10.2", "tower", "tower-http 0.4.4", "tracing", @@ -1627,7 +1627,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4b459b0f2ec8bc8434b8f4c0f70f91221738f7892f00150d15dc7edc075f70a0" dependencies = [ "prost", - "tonic", + "tonic 0.8.3", "tonic-build", ] @@ -3451,6 +3451,25 @@ dependencies = [ "tracing-futures", ] +[[package]] +name = "tonic" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d560933a0de61cf715926b9cac824d4c883c2c43142f787595e48280c40a1d0e" +dependencies = [ + "base64 0.21.5", + "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 95d2f7797..f2c5a66d5 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 }