From 45a5f8869167380ea5d9d8b75d23a09389863a52 Mon Sep 17 00:00:00 2001 From: ss-sonic Date: Thu, 6 Feb 2025 00:42:29 +0400 Subject: [PATCH] Upgrade Tokio dependency to version 1.43.0 - Update Tokio runtime dependency to the latest version - Bump package version to 1.0.4 - Ensure compatibility with recent Tokio improvements --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 20ed717..e6c1294 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "botcore" -version = "1.0.3" +version = "1.0.4" edition = "2021" rust-version = "1.84.1" description = "Production-grade asynchronous bot engine with enterprise observability features" @@ -22,7 +22,7 @@ categories = [ anyhow = "1.0" async-trait = "0.1" tokio-stream = "0.1" -tokio = { version = "1.14.1", features = ["full"] } +tokio = { version = "1.43.0", features = ["full"] } tracing = "0.1" thiserror = "2.0.11" prometheus = { version = "0.13", optional = true }