From 1b87711daa578fb75a2e33d1b3ec67aaf6be56df Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Tue, 30 Apr 2024 16:20:50 -0400 Subject: [PATCH] refactor: blocking feature doesn't need multi-threaded tokio runtime (#2269) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 87ec823d5..66c47b1e7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,7 +45,7 @@ rustls-tls-manual-roots = ["__rustls"] rustls-tls-webpki-roots = ["dep:webpki-roots", "__rustls"] rustls-tls-native-roots = ["dep:rustls-native-certs", "__rustls"] -blocking = ["futures-channel/sink", "futures-util/io", "futures-util/sink", "tokio/rt-multi-thread", "tokio/sync"] +blocking = ["futures-channel/sink", "futures-util/io", "futures-util/sink", "tokio/sync"] charset = ["dep:encoding_rs"]