From 60a4fb373d4d8132c08c26e56ff84b34d996e03e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 May 2026 02:49:56 +0000 Subject: [PATCH] build(deps): bump the minor-and-patch group across 1 directory with 2 updates Bumps the minor-and-patch group with 2 updates in the / directory: [tower-http](https://github.com/tower-rs/tower-http) and [serde_json](https://github.com/serde-rs/json). Updates `tower-http` from 0.6.10 to 0.6.11 - [Release notes](https://github.com/tower-rs/tower-http/releases) - [Commits](https://github.com/tower-rs/tower-http/compare/tower-http-0.6.10...tower-http-0.6.11) Updates `serde_json` from 1.0.149 to 1.0.150 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.149...v1.0.150) --- updated-dependencies: - dependency-name: tower-http dependency-version: 0.6.11 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: serde_json dependency-version: 1.0.150 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- crates/battleground-server/Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9bb526c..d57b242 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -816,9 +816,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.149" +version = "1.0.150" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" +checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9" dependencies = [ "itoa", "memchr", @@ -1019,9 +1019,9 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.6.10" +version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68d6fdd9f81c2819c9a8b0e0cd91660e7746a8e6ea2ba7c6b2b057985f6bcb51" +checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" dependencies = [ "bitflags", "bytes", diff --git a/crates/battleground-server/Cargo.toml b/crates/battleground-server/Cargo.toml index 6b208e2..89b7567 100644 --- a/crates/battleground-server/Cargo.toml +++ b/crates/battleground-server/Cargo.toml @@ -7,9 +7,9 @@ edition = "2021" battleground-core = { path = "../battleground-core" } axum = { version = "=0.8.9", features = ["ws"] } tokio = { version = "=1.52.3", features = ["full"] } -tower-http = { version = "=0.6.10", features = ["cors", "fs"] } +tower-http = { version = "=0.6.11", features = ["cors", "fs"] } serde = { workspace = true } -serde_json = "=1.0.149" +serde_json = "=1.0.150" bincode = { workspace = true } anyhow = { workspace = true } uuid = { version = "=1.23.1", features = ["v4"] }