From 097ad301fa87e481f5b2ec0ca3652a947ca48cc5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Apr 2025 02:09:54 +0000 Subject: [PATCH] build(deps): bump tokio from 1.41.1 to 1.43.1 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.41.1 to 1.43.1. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.41.1...tokio-1.43.1) --- updated-dependencies: - dependency-name: tokio dependency-version: 1.43.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 12 ++++++------ Cargo.toml | 2 +- client/app/src-tauri/Cargo.toml | 2 +- grpc-server/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1de35c5..a803ecf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2553,9 +2553,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.164" +version = "0.2.171" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "433bfe06b8c75da9b2e3fbea6e5329ff87748f0b144ef75306e674c3f6f7c13f" +checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6" [[package]] name = "libm" @@ -5632,9 +5632,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.41.1" +version = "1.43.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22cfb5bee7a6a52939ca9224d6ac897bb669134078daa8735560897f69de4d33" +checksum = "492a604e2fd7f814268a378409e6c92b5525d747d10db9a229723f55a417958c" dependencies = [ "backtrace", "bytes", @@ -5660,9 +5660,9 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.4.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" +checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index d7ed64c..e34822a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ homepage = "https://mecha.so" [workspace.dependencies] async-trait = "0.1.74" async-nats = "0.33.0" -tokio = { version = "1.27.0", features = ["full"] } +tokio = { version = "1.43.1", features = ["full"] } serde = { version = "1.0.159", features = ["derive"]} serde_json = "1.0.33" serde_yaml = "0.9.21" diff --git a/client/app/src-tauri/Cargo.toml b/client/app/src-tauri/Cargo.toml index 39d2419..1d6cac0 100644 --- a/client/app/src-tauri/Cargo.toml +++ b/client/app/src-tauri/Cargo.toml @@ -20,7 +20,7 @@ serde_json = "1.0" serde = { version = "1.0", features = ["derive"] } tauri = { version = "1.6.2", features = [] } tonic = "0.9.2" -tokio = {version = "1.35.1", features = ["full"] } +tokio = {version = "1.43.1", features = ["full"] } tokio-util = "0.7.10" anyhow = "1.0.71" prost = "0.11.9" diff --git a/grpc-server/Cargo.toml b/grpc-server/Cargo.toml index f1b5b89..279cc56 100644 --- a/grpc-server/Cargo.toml +++ b/grpc-server/Cargo.toml @@ -16,7 +16,7 @@ identity = { path = "../identity" } provisioning = { path = "../provisioning" } settings = { path = "../settings" } telemetry = { path = "../telemetry" } -tokio = { version = "1.27.0", features = ["full"] } +tokio = { version = "1.43.1", features = ["full"] } serde = { version = "1.0.159", features = ["derive"]} tracing = "0.1" anyhow = { workspace = true }