From df54a53b7c3e9c837ce0ff4042c65c8ea55d9c7b Mon Sep 17 00:00:00 2001 From: Awiteb Date: Wed, 24 Sep 2025 11:36:07 +0000 Subject: [PATCH] deps: add `io-std` feature to `tokio` Signed-off-by: Awiteb --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70a9ac6..d48c821 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Make subject mandatory and optional content - by Awiteb +### Dependencies + +- Add `io-std` feature to `tokio` - by Awiteb + ### Documentation - Update commands help messages - by Awiteb diff --git a/Cargo.toml b/Cargo.toml index e0f7b96..7a85761 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -64,7 +64,7 @@ tracing-subscriber = "0.3.19" version = "1.0.219" [dependencies.tokio] - features = ["macros", "rt-multi-thread"] + features = ["macros", "rt-multi-thread", "io-std"] version = "1.47.1" [profile.release]