diff --git a/Cargo.lock b/Cargo.lock index 12b20c828b..5030cf1747 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -574,7 +574,7 @@ dependencies = [ "sketches-ddsketch", "tokio", "tokio-stream", - "tonic 0.9.2", + "tonic 0.11.0", "tower", "tracing", "tracing-subscriber", @@ -1116,7 +1116,7 @@ dependencies = [ "thiserror", "tokio", "tokio-util", - "tonic 0.9.2", + "tonic 0.11.0", "tower", "tracing", "tracing-subscriber", @@ -2277,7 +2277,7 @@ dependencies = [ "shared", "tempfile", "tokio", - "tonic 0.9.2", + "tonic 0.11.0", "tower", "tracing", "tracing-subscriber", @@ -2624,6 +2624,33 @@ dependencies = [ "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", + "axum", + "base64 0.21.5", + "bytes", + "h2", + "http", + "http-body", + "hyper", + "hyper-timeout", + "percent-encoding", + "pin-project", + "prost 0.12.3", + "tokio", + "tokio-stream", + "tower", + "tower-layer", + "tower-service", + "tracing", +] + [[package]] name = "tonic-build" version = "0.8.4" diff --git a/integration/ducks/Cargo.toml b/integration/ducks/Cargo.toml index 1e127a1aec..72734e02eb 100644 --- a/integration/ducks/Cargo.toml +++ b/integration/ducks/Cargo.toml @@ -18,7 +18,7 @@ shared = { path = "../shared" } sketches-ddsketch = "0.2" tokio = { version = "1.32", features = ["rt", "macros", "fs", "io-util", "process", "signal", "time", "net"] } tokio-stream = { version = "0.1", features = ["net"] } -tonic = { version = "0.9", default-features = false, features = ["transport", "prost"] } +tonic = { version = "0.11", default-features = false, features = ["transport", "prost"] } tower = { version = "0.4", default-features = false, features = ["timeout", "limit", "load-shed"] } tracing = { version = "0.1", features = ["std", "attributes"] } tracing-subscriber = { version = "0.3", features = ["std", "env-filter"] } diff --git a/integration/sheepdog/Cargo.toml b/integration/sheepdog/Cargo.toml index 2b08893596..c793122e0e 100644 --- a/integration/sheepdog/Cargo.toml +++ b/integration/sheepdog/Cargo.toml @@ -14,7 +14,7 @@ serde_json = "1.0" shared = { path = "../shared" } tempfile = "3.8" tokio = { version = "1.32", features = ["rt", "macros", "fs", "io-util", "process", "signal", "time", "net"] } -tonic = { version = "0.9", default-features = false, features = ["transport", "prost"]} +tonic = { version = "0.11", default-features = false, features = ["transport", "prost"]} tower = { version = "0.4", default-features = false, features = ["timeout", "limit", "load-shed"] } tracing = { version = "0.1", features = ["std", "attributes"] } tracing-subscriber = { version = "0.3", features = ["std", "env-filter"] } diff --git a/lading/Cargo.toml b/lading/Cargo.toml index 63b1553259..b9760004be 100644 --- a/lading/Cargo.toml +++ b/lading/Cargo.toml @@ -40,7 +40,7 @@ serde_yaml = "0.9" thiserror = { workspace = true } tokio = { workspace = true, features = ["rt", "rt-multi-thread", "macros", "fs", "io-util", "process", "signal", "time", "net"] } tokio-util = { version = "0.7", features = ["io"] } -tonic = { version = "0.9" } +tonic = { version = "0.11" } tower = { version = "0.4", default-features = false, features = ["timeout", "limit", "load-shed"] } tracing = { workspace = true } tracing-subscriber = { version = "0.3", features = ["std", "env-filter"] }