From 9a5f3ada6e172ed22d37c16c1bc86ca12eb2b2a0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Mar 2026 09:45:06 +0000 Subject: [PATCH] Updated:(deps): Bump tokio from 1.49.0 to 1.50.0 in /src Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.49.0 to 1.50.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.49.0...tokio-1.50.0) --- updated-dependencies: - dependency-name: tokio dependency-version: 1.50.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- src/Cargo.lock | 6 +++--- src/llm-coding-tools-core/Cargo.toml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Cargo.lock b/src/Cargo.lock index a9d43b94..d833eab1 100644 --- a/src/Cargo.lock +++ b/src/Cargo.lock @@ -2647,7 +2647,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0136791f7c95b1f6dd99f9cc786b91bb81c3800b639b3478e561ddb7be95e5f1" dependencies = [ "fastrand", - "getrandom 0.3.4", + "getrandom 0.4.2", "once_cell", "rustix", "windows-sys 0.61.2", @@ -2759,9 +2759,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.49.0" +version = "1.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86" +checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d" dependencies = [ "bytes", "libc", diff --git a/src/llm-coding-tools-core/Cargo.toml b/src/llm-coding-tools-core/Cargo.toml index 3238bfa4..0be10f53 100644 --- a/src/llm-coding-tools-core/Cargo.toml +++ b/src/llm-coding-tools-core/Cargo.toml @@ -82,7 +82,7 @@ reqwest = { version = "0.13", default-features = false, features = [ maybe-async = "0.2" # Async file I/O, process execution, and timeouts -tokio = { version = "1.49", features = ["fs", "io-util", "process", "time"], optional = true } +tokio = { version = "1.50", features = ["fs", "io-util", "process", "time"], optional = true } # Cross-platform process tree management (Job Objects on Windows, process groups on Unix) process-wrap = { version = "9.0", default-features = false } @@ -90,7 +90,7 @@ process-wrap = { version = "9.0", default-features = false } [dev-dependencies] tempfile = "3.25" # For async tests (when async feature enabled) -tokio = { version = "1.49", features = ["rt", "macros"] } +tokio = { version = "1.50", features = ["rt", "macros"] } wiremock = "0.6" indoc = "2" criterion = "0.8"