From 18796839b2dd2f7957daa3403263ba84f905930b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Apr 2024 11:29:35 +0000 Subject: [PATCH] chore(deps): bump shuttle-runtime from 0.42.0 to 0.44.0 Bumps [shuttle-runtime](https://github.com/shuttle-hq/shuttle) from 0.42.0 to 0.44.0. - [Release notes](https://github.com/shuttle-hq/shuttle/releases) - [Changelog](https://github.com/shuttle-hq/shuttle/blob/main/CHANGELOG.md) - [Commits](https://github.com/shuttle-hq/shuttle/compare/v0.42.0...v0.44.0) --- updated-dependencies: - dependency-name: shuttle-runtime dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 104 ++++++++++++++++++++++++++++++++++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 96 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ef50a56..0036ad9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2228,7 +2228,7 @@ dependencies = [ "serde", "serde_regex", "shuttle-actix-web", - "shuttle-runtime", + "shuttle-runtime 0.44.0", "tokio", "tracing", "tracing-subscriber", @@ -2381,7 +2381,7 @@ checksum = "a6cc5c406b066c8c6d68d0165abf38c6484acd6121e7d238440fa46d846b777d" dependencies = [ "actix-web", "num_cpus", - "shuttle-runtime", + "shuttle-runtime 0.42.0", ] [[package]] @@ -2396,6 +2396,18 @@ dependencies = [ "syn 2.0.55", ] +[[package]] +name = "shuttle-codegen" +version = "0.44.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a0ba1965be7df9f6eacf86ce8e7d13371972620f1b512afb16de0fb7f9842fb" +dependencies = [ + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.55", +] + [[package]] name = "shuttle-common" version = "0.42.0" @@ -2423,6 +2435,33 @@ dependencies = [ "zeroize", ] +[[package]] +name = "shuttle-common" +version = "0.44.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2f4a7cbeba0ac04ff93e60e7c9cd3fb7a1a06df108b7c6c81ec4237283189f5a" +dependencies = [ + "anyhow", + "chrono", + "comfy-table", + "crossterm 0.27.0", + "http 0.2.12", + "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.42.0" @@ -2432,7 +2471,20 @@ dependencies = [ "futures-core", "prost", "prost-types", - "shuttle-common", + "shuttle-common 0.42.0", + "tonic", +] + +[[package]] +name = "shuttle-proto" +version = "0.44.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa562975ec33dfdb0535864e351f0d632af1306f877481bbc5a597bfb7b8ee2e" +dependencies = [ + "futures-core", + "prost", + "prost-types", + "shuttle-common 0.44.0", "tonic", ] @@ -2445,19 +2497,39 @@ dependencies = [ "anyhow", "async-trait", "chrono", - "colored", "prost-types", "serde", "serde_json", - "shuttle-codegen", - "shuttle-common", - "shuttle-proto", - "shuttle-service", + "shuttle-codegen 0.42.0", + "shuttle-common 0.42.0", + "shuttle-proto 0.42.0", + "shuttle-service 0.42.0", "strfmt", "thiserror", "tokio", "tokio-stream", "tonic", +] + +[[package]] +name = "shuttle-runtime" +version = "0.44.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9468e399b464fc49a9e2a89beeb29d5a685c3eb38cbdd4f7da28ae6db055ab86" +dependencies = [ + "anyhow", + "async-trait", + "colored", + "serde", + "serde_json", + "shuttle-codegen 0.44.0", + "shuttle-common 0.44.0", + "shuttle-proto 0.44.0", + "shuttle-service 0.44.0", + "strfmt", + "tokio", + "tokio-stream", + "tonic", "tracing-subscriber", ] @@ -2470,7 +2542,21 @@ dependencies = [ "anyhow", "async-trait", "serde", - "shuttle-common", + "shuttle-common 0.42.0", + "strfmt", + "thiserror", +] + +[[package]] +name = "shuttle-service" +version = "0.44.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4687d5f97c43826faf9f2fa665d475696fc71857e5960c3112664480a4a6e6c" +dependencies = [ + "anyhow", + "async-trait", + "serde", + "shuttle-common 0.44.0", "strfmt", "thiserror", ] diff --git a/Cargo.toml b/Cargo.toml index 7596b12..8237624 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ actix-web-grants = { version = "4.0.3" } actix-multipart = "0.6.1" actix-files = "0.6.5" shuttle-actix-web = { version = "0.42.0", optional = true } -shuttle-runtime = { version = "0.42.0", optional = true } +shuttle-runtime = { version = "0.44.0", optional = true } awc = { version = "3.4.0" } serde = "1.0.197" futures-util = "0.3.30"