From 1ed96a17172f7bf15c0a7564a83a7b2380701d1a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Mar 2024 19:01:32 +0000 Subject: [PATCH] Bump shuttle-runtime from 0.41.0 to 0.42.0 Bumps shuttle-runtime from 0.41.0 to 0.42.0. --- updated-dependencies: - dependency-name: shuttle-runtime dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 105 +++++++++++++++++++++++++++++++++++++---- coordinator/Cargo.toml | 2 +- 2 files changed, 98 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5a0b70d..eb6834d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -308,7 +308,7 @@ dependencies = [ "protocol", "serde_json", "shuttle-axum", - "shuttle-runtime", + "shuttle-runtime 0.42.0", "tokio", "tower-http", "tracing", @@ -1471,7 +1471,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4b750537cda0c5888e4684d7726d67ccc18ba1757c8f2cb649ad2101a0483e88" dependencies = [ "axum 0.7.4", - "shuttle-runtime", + "shuttle-runtime 0.41.0", ] [[package]] @@ -1486,6 +1486,18 @@ dependencies = [ "syn 2.0.48", ] +[[package]] +name = "shuttle-codegen" +version = "0.42.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbaaa74ae77edfc5590c87af97bfc15d0aff2db9ff4a5fd891be0a7dd0de8089" +dependencies = [ + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.48", +] + [[package]] name = "shuttle-common" version = "0.41.0" @@ -1513,6 +1525,33 @@ dependencies = [ "zeroize", ] +[[package]] +name = "shuttle-common" +version = "0.42.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "910ae1502f083563f06fee5d5ceb2a8b45f92c67ef7834806880484f15d79bb5" +dependencies = [ + "anyhow", + "chrono", + "comfy-table", + "crossterm 0.27.0", + "http 0.2.11", + "opentelemetry", + "opentelemetry-http", + "pin-project", + "semver", + "serde", + "serde_json", + "strum 0.26.2", + "tower", + "tracing", + "tracing-opentelemetry", + "tracing-subscriber", + "url", + "uuid", + "zeroize", +] + [[package]] name = "shuttle-proto" version = "0.41.0" @@ -1522,7 +1561,20 @@ dependencies = [ "futures-core", "prost", "prost-types", - "shuttle-common", + "shuttle-common 0.41.0", + "tonic", +] + +[[package]] +name = "shuttle-proto" +version = "0.42.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ad7aa381187faaa32562c1e3631047b1edd070c055be50a5f32d13a538110fd7" +dependencies = [ + "futures-core", + "prost", + "prost-types", + "shuttle-common 0.42.0", "tonic", ] @@ -1538,10 +1590,33 @@ dependencies = [ "prost-types", "serde", "serde_json", - "shuttle-codegen", - "shuttle-common", - "shuttle-proto", - "shuttle-service", + "shuttle-codegen 0.41.0", + "shuttle-common 0.41.0", + "shuttle-proto 0.41.0", + "shuttle-service 0.41.0", + "strfmt", + "thiserror", + "tokio", + "tokio-stream", + "tonic", +] + +[[package]] +name = "shuttle-runtime" +version = "0.42.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "322f013c5058e37bf19a9ad8af35a2ac139605b0cbd941c0d0a009d032e23b73" +dependencies = [ + "anyhow", + "async-trait", + "chrono", + "prost-types", + "serde", + "serde_json", + "shuttle-codegen 0.42.0", + "shuttle-common 0.42.0", + "shuttle-proto 0.42.0", + "shuttle-service 0.42.0", "strfmt", "thiserror", "tokio", @@ -1558,7 +1633,21 @@ dependencies = [ "anyhow", "async-trait", "serde", - "shuttle-common", + "shuttle-common 0.41.0", + "strfmt", + "thiserror", +] + +[[package]] +name = "shuttle-service" +version = "0.42.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9118dcf5aea64a38a06875a744b6c7daf8aa41e56eb2ecea2a21fb8c42ff7db5" +dependencies = [ + "anyhow", + "async-trait", + "serde", + "shuttle-common 0.42.0", "strfmt", "thiserror", ] diff --git a/coordinator/Cargo.toml b/coordinator/Cargo.toml index 05e0938..b269312 100644 --- a/coordinator/Cargo.toml +++ b/coordinator/Cargo.toml @@ -44,6 +44,6 @@ optional = true # Feature `shuttle` depend on it. [dependencies.shuttle-runtime] -version = "0.41" +version = "0.42" default-features = false optional = true