From 844ace9b9dddabe5c4ef659848902e29531d2663 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 01:19:53 +0000 Subject: [PATCH] cargo: bump http from 1.3.1 to 1.4.0 in the minor group Bumps the minor group with 1 update: [http](https://github.com/hyperium/http). Updates `http` from 1.3.1 to 1.4.0 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v1.3.1...v1.4.0) --- updated-dependencies: - dependency-name: http dependency-version: 1.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 7 +++---- src/concurrency/async-exercises/chat-async/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bf3cdc5de5f8..2634f335db84 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1030,12 +1030,11 @@ dependencies = [ [[package]] name = "http" -version = "1.3.1" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" +checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" dependencies = [ "bytes", - "fnv", "itoa", ] @@ -2718,7 +2717,7 @@ dependencies = [ "getrandom 0.3.3", "once_cell", "rustix", - "windows-sys 0.60.2", + "windows-sys 0.61.2", ] [[package]] diff --git a/src/concurrency/async-exercises/chat-async/Cargo.toml b/src/concurrency/async-exercises/chat-async/Cargo.toml index 74a200e96ec2..05dcfe9a5edd 100644 --- a/src/concurrency/async-exercises/chat-async/Cargo.toml +++ b/src/concurrency/async-exercises/chat-async/Cargo.toml @@ -5,6 +5,6 @@ edition = "2024" [dependencies] futures-util = { version = "0.3.31", features = ["sink"] } -http = "1.3.1" +http = "1.4.0" tokio = { version = "1.48.0", features = ["full"] } tokio-websockets = { version = "0.13.0", features = ["client", "fastrand", "server", "sha1_smol"] }