chore(deps): bump shuttle-actix-web from 0.35.1 to 0.40.0

Bumps shuttle-actix-web from 0.35.1 to 0.40.0.

---
updated-dependencies:
- dependency-name: shuttle-actix-web
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2024-03-05 11:23:39 +00:00 committed by GitHub
parent 12f0e8f3a7
commit bda631efee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 100 additions and 11 deletions

109
Cargo.lock generated
View File

@ -2432,7 +2432,7 @@ dependencies = [
"serde",
"serde_regex",
"shuttle-actix-web",
"shuttle-runtime",
"shuttle-runtime 0.35.1",
"tokio",
"tracing",
"tracing-subscriber",
@ -2580,13 +2580,13 @@ dependencies = [
[[package]]
name = "shuttle-actix-web"
version = "0.35.1"
version = "0.40.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ca8b5015eaea3b3bc38078936dc21dbc46a352e736319c80e4422a77c31dcc4"
checksum = "14ee33d407ccc10bff09ab38425d99f0ce4b6cf2c094ed71ceb68375789d5c93"
dependencies = [
"actix-web",
"num_cpus",
"shuttle-runtime",
"shuttle-runtime 0.40.0",
]
[[package]]
@ -2601,6 +2601,18 @@ dependencies = [
"syn 2.0.46",
]
[[package]]
name = "shuttle-codegen"
version = "0.40.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "84756b15f4f51a0edd060fe59203ce5d6b37796204a4d614135f266f97141d85"
dependencies = [
"proc-macro-error",
"proc-macro2",
"quote",
"syn 2.0.46",
]
[[package]]
name = "shuttle-common"
version = "0.35.1"
@ -2645,6 +2657,33 @@ dependencies = [
"zeroize",
]
[[package]]
name = "shuttle-common"
version = "0.40.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4af50755ec20f317a5f6429385ead196a77c678fb5a726a9bae98ab1c8a600f6"
dependencies = [
"anyhow",
"chrono",
"comfy-table",
"crossterm 0.27.0",
"http",
"opentelemetry",
"opentelemetry-http",
"pin-project",
"semver",
"serde",
"serde_json",
"strum 0.25.0",
"tower",
"tracing",
"tracing-opentelemetry",
"tracing-subscriber",
"url",
"uuid",
"zeroize",
]
[[package]]
name = "shuttle-proto"
version = "0.35.1"
@ -2654,7 +2693,20 @@ dependencies = [
"futures-core",
"prost 0.12.3",
"prost-types",
"shuttle-common",
"shuttle-common 0.35.1",
"tonic 0.10.2",
]
[[package]]
name = "shuttle-proto"
version = "0.40.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a26c79d064d7b24fc12cb4035d3baecac99e16f28a384c7359c36253f3278bc4"
dependencies = [
"futures-core",
"prost 0.12.3",
"prost-types",
"shuttle-common 0.40.2",
"tonic 0.10.2",
]
@ -2671,10 +2723,10 @@ dependencies = [
"prost-types",
"serde",
"serde_json",
"shuttle-codegen",
"shuttle-common",
"shuttle-proto",
"shuttle-service",
"shuttle-codegen 0.35.1",
"shuttle-common 0.35.1",
"shuttle-proto 0.35.1",
"shuttle-service 0.35.1",
"strfmt",
"thiserror",
"tokio",
@ -2684,6 +2736,29 @@ dependencies = [
"tracing-subscriber",
]
[[package]]
name = "shuttle-runtime"
version = "0.40.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75e4df6264bcdf63c6b90180cd644a03e9b28fdb955b40cb650176dcc0ead0b"
dependencies = [
"anyhow",
"async-trait",
"chrono",
"prost-types",
"serde",
"serde_json",
"shuttle-codegen 0.40.0",
"shuttle-common 0.40.2",
"shuttle-proto 0.40.0",
"shuttle-service 0.40.0",
"strfmt",
"thiserror",
"tokio",
"tokio-stream",
"tonic 0.10.2",
]
[[package]]
name = "shuttle-service"
version = "0.35.1"
@ -2693,7 +2768,21 @@ dependencies = [
"anyhow",
"async-trait",
"serde",
"shuttle-common",
"shuttle-common 0.35.1",
"strfmt",
"thiserror",
]
[[package]]
name = "shuttle-service"
version = "0.40.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7ebd14ea503e12caaf1bb12587fe579fa1087a6a6b0c73c2c53331acb538c8c"
dependencies = [
"anyhow",
"async-trait",
"serde",
"shuttle-common 0.40.2",
"strfmt",
"thiserror",
]

View File

@ -23,7 +23,7 @@ actix-web = { version = "4.4.1" }
actix-web-grants = { version = "4.0.3" }
actix-multipart = "0.6.1"
actix-files = "0.6.2"
shuttle-actix-web = { version = "0.35.1", optional = true }
shuttle-actix-web = { version = "0.40.0", optional = true }
shuttle-runtime = { version = "0.35.1", optional = true }
awc = { version = "3.3.0" }
serde = "1.0.196"