bump: tower-http
textsender_api PR / Rustfmt (pull_request) Successful in 57s
textsender_api PR / Clippy (pull_request) Successful in 1m43s
textsender_api PR / Check (pull_request) Successful in 2m12s

This commit is contained in:
2026-07-04 18:27:24 -04:00
parent 97ba96ea12
commit f70510e506
2 changed files with 20 additions and 4 deletions
Generated
+19 -3
View File
@@ -2149,7 +2149,7 @@ dependencies = [
"tokio-rustls", "tokio-rustls",
"tokio-util", "tokio-util",
"tower", "tower",
"tower-http", "tower-http 0.6.11",
"tower-service", "tower-service",
"url", "url",
"wasm-bindgen", "wasm-bindgen",
@@ -3143,7 +3143,7 @@ dependencies = [
"time", "time",
"tokio", "tokio",
"tower", "tower",
"tower-http", "tower-http 0.7.0",
"tracing-subscriber", "tracing-subscriber",
"url", "url",
"utoipa", "utoipa",
@@ -3345,13 +3345,29 @@ dependencies = [
"http", "http",
"http-body", "http-body",
"pin-project-lite", "pin-project-lite",
"tokio",
"tower", "tower",
"tower-layer", "tower-layer",
"tower-service", "tower-service",
"url", "url",
] ]
[[package]]
name = "tower-http"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233"
dependencies = [
"bitflags",
"bytes",
"http",
"http-body",
"percent-encoding",
"pin-project-lite",
"tokio",
"tower-layer",
"tower-service",
]
[[package]] [[package]]
name = "tower-layer" name = "tower-layer"
version = "0.3.3" version = "0.3.3"
+1 -1
View File
@@ -10,7 +10,7 @@ axum-extra = { version = "0.12.6", features = ["cookie"] }
serde = { version = "1.0.228", features = ["derive"] } serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.150" } serde_json = { version = "1.0.150" }
tokio = { version = "1.52.3", features = ["full"] } tokio = { version = "1.52.3", features = ["full"] }
tower-http = { version = "0.6.11", features = ["cors", "timeout"] } tower-http = { version = "0.7.0", features = ["cors", "timeout"] }
tracing-subscriber = "0.3.23" tracing-subscriber = "0.3.23"
uuid = { version = "1.23.3", features = ["v4", "serde"] } uuid = { version = "1.23.3", features = ["v4", "serde"] }
sqlx = { version = "0.9.0", features = ["runtime-tokio", "tls-native-tls", "postgres", "time", "uuid"] } sqlx = { version = "0.9.0", features = ["runtime-tokio", "tls-native-tls", "postgres", "time", "uuid"] }