From dac6ea3c5e4b53112114480f2461fbe4cfd6ae5b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Nov 2023 16:51:00 +0000 Subject: [PATCH] Bump shuttle-actix-web from 0.28.0 to 0.31.0 Bumps shuttle-actix-web from 0.28.0 to 0.31.0. --- updated-dependencies: - dependency-name: shuttle-actix-web dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 140 +++++++++++++++++++++++++++++++++++++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 131 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2c9940a..6fd1136 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1914,19 +1914,19 @@ version = "0.1.0" dependencies = [ "actix-web", "shuttle-actix-web", - "shuttle-runtime", + "shuttle-runtime 0.28.0", "tokio", ] [[package]] name = "shuttle-actix-web" -version = "0.28.0" +version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "022820e4ab1af63c244b31a4a3a178689bd6843711110bc94bc9e8d2ab6377b3" +checksum = "d5f2511684082a9f398e9767f289d25dd75b92787f7001f8da1dbf2e2cf4590f" dependencies = [ "actix-web", "num_cpus", - "shuttle-runtime", + "shuttle-runtime 0.31.0", ] [[package]] @@ -1941,6 +1941,18 @@ dependencies = [ "syn 2.0.38", ] +[[package]] +name = "shuttle-codegen" +version = "0.31.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26923bd6e15984d3fce9f52fbac7d52d011885ffe79c0f566048f274068a1937" +dependencies = [ + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.38", +] + [[package]] name = "shuttle-common" version = "0.28.1" @@ -1984,6 +1996,50 @@ dependencies = [ "uuid", ] +[[package]] +name = "shuttle-common" +version = "0.31.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03089b45ff42d977b5c3df0ee8cf6cb147f8df65bc4c8068405a129e06380e46" +dependencies = [ + "anyhow", + "async-trait", + "axum", + "bytes", + "chrono", + "comfy-table", + "crossterm 0.27.0", + "headers", + "http", + "http-body", + "http-serde", + "hyper", + "jsonwebtoken", + "once_cell", + "opentelemetry", + "opentelemetry-http", + "opentelemetry-otlp", + "pin-project", + "reqwest", + "rmp-serde", + "rustrict", + "semver", + "serde", + "serde_json", + "strum", + "thiserror", + "tokio", + "tonic", + "tower", + "tower-http", + "tracing", + "tracing-opentelemetry", + "tracing-subscriber", + "ttl_cache", + "uuid", + "zeroize", +] + [[package]] name = "shuttle-proto" version = "0.28.0" @@ -1997,7 +2053,27 @@ dependencies = [ "prost", "prost-types", "serde_json", - "shuttle-common", + "shuttle-common 0.28.1", + "tokio", + "tonic", + "tower", + "tracing", +] + +[[package]] +name = "shuttle-proto" +version = "0.31.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "941c18c10cff167fff106cea13e46ab37f97a075a110468c791ae77b5bd6bc45" +dependencies = [ + "anyhow", + "chrono", + "dunce", + "home", + "prost", + "prost-types", + "serde_json", + "shuttle-common 0.31.0", "tokio", "tonic", "tower", @@ -2017,10 +2093,10 @@ dependencies = [ "prost-types", "serde", "serde_json", - "shuttle-codegen", - "shuttle-common", - "shuttle-proto", - "shuttle-service", + "shuttle-codegen 0.28.0", + "shuttle-common 0.28.1", + "shuttle-proto 0.28.0", + "shuttle-service 0.28.0", "strfmt", "thiserror", "tokio", @@ -2030,6 +2106,30 @@ dependencies = [ "tracing-subscriber", ] +[[package]] +name = "shuttle-runtime" +version = "0.31.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "440141c29409f3ced3adcd709b68f55937ee34594691f809909dc411fee66307" +dependencies = [ + "anyhow", + "async-trait", + "chrono", + "prost-types", + "serde", + "serde_json", + "shuttle-codegen 0.31.0", + "shuttle-common 0.31.0", + "shuttle-proto 0.31.0", + "shuttle-service 0.31.0", + "strfmt", + "thiserror", + "tokio", + "tokio-stream", + "tonic", + "tower", +] + [[package]] name = "shuttle-service" version = "0.28.0" @@ -2039,7 +2139,21 @@ dependencies = [ "anyhow", "async-trait", "serde", - "shuttle-common", + "shuttle-common 0.28.1", + "strfmt", + "thiserror", +] + +[[package]] +name = "shuttle-service" +version = "0.31.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3d4aab886670e782d491d5df8e62417b03509cbcbf2545d483b3dc453662209" +dependencies = [ + "anyhow", + "async-trait", + "serde", + "shuttle-common 0.31.0", "strfmt", "thiserror", ] @@ -2825,6 +2939,12 @@ dependencies = [ "windows-sys", ] +[[package]] +name = "zeroize" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9" + [[package]] name = "zstd" version = "0.12.4" diff --git a/Cargo.toml b/Cargo.toml index 9197d25..9eadd63 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,6 +5,6 @@ edition = "2021" [dependencies] actix-web = "4.3.1" -shuttle-actix-web = "0.28.0" +shuttle-actix-web = "0.31.0" shuttle-runtime = "0.28.0" tokio = "1.26.0"