diff --git a/Cargo.lock b/Cargo.lock index 71691a1..5efb46d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1936,7 +1936,7 @@ dependencies = [ "time", "tokio", "tokio-postgres", - "tonic", + "tonic 0.11.0", "tonic-build", "tonic-reflection", "tower", @@ -2961,6 +2961,27 @@ name = "tonic" version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d560933a0de61cf715926b9cac824d4c883c2c43142f787595e48280c40a1d0e" +dependencies = [ + "async-trait", + "base64", + "bytes", + "http 0.2.11", + "http-body 0.4.6", + "percent-encoding", + "pin-project", + "prost", + "tokio", + "tokio-stream", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "tonic" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76c4eb7a4e9ef9d4763600161f12f5070b92a578e1b634db88a6887844c91a13" dependencies = [ "async-stream", "async-trait", @@ -3006,7 +3027,7 @@ dependencies = [ "prost-types", "tokio", "tokio-stream", - "tonic", + "tonic 0.10.2", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 8d54372..bf2ed47 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ thiserror = "1.0" time = { version = "0.3", features = ["macros"] } tokio = { version = "1.36", features = ["full"] } tokio-postgres = "0.7" -tonic = "0.10" +tonic = "0.11" tonic-reflection = "0.10" tower = "0.4" tracing = "0.1"