From b120045286a7185c8de3cc0edf0bfe981203813e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Mar 2026 16:08:24 +0000 Subject: [PATCH] chore(deps)(deps): bump tokio from 1.48.0 to 1.50.0 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.48.0 to 1.50.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.48.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] --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- desktop/src-tauri/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ec0dc8a0..c8a34f43 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6352,9 +6352,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.48.0" +version = "1.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408" +checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d" dependencies = [ "bytes", "libc", diff --git a/Cargo.toml b/Cargo.toml index 3e1075a5..c323cd5e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ edition = "2024" [workspace.dependencies] # OpenRouter AI integration dependencies -tokio = { version = "1.0", features = ["full"] } +tokio = { version = "1.50", features = ["full"] } reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false } # Direct HTTP LLM client approach (removed rig-core) diff --git a/desktop/src-tauri/Cargo.toml b/desktop/src-tauri/Cargo.toml index 1bb59dc1..612e5b35 100644 --- a/desktop/src-tauri/Cargo.toml +++ b/desktop/src-tauri/Cargo.toml @@ -52,7 +52,7 @@ tauri = { version = "1.7.1", features = [ "updater", "system-tray", ] } serde_json = "1.0.104" -tokio = { version = "1.36.0", features = ["full"] } +tokio = { version = "1.50.0", features = ["full"] } thiserror = "1.0.58" ahash = "0.8.11" schemars = { version = "0.8.22", features = ["derive"] }