From 92cfe63c4f6e4b0d241668146f39340bab97975d Mon Sep 17 00:00:00 2001 From: Zak Cutner Date: Fri, 7 Jan 2022 04:59:51 +0000 Subject: [PATCH] Use single-threaded Tokio runtime (#360) --- tarpc/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tarpc/Cargo.toml b/tarpc/Cargo.toml index 5b3b662..442cf0f 100644 --- a/tarpc/Cargo.toml +++ b/tarpc/Cargo.toml @@ -17,7 +17,7 @@ description = "An RPC framework for Rust with a focus on ease of use." default = [] serde1 = ["tarpc-plugins/serde1", "serde", "serde/derive"] -tokio1 = ["tokio/rt-multi-thread"] +tokio1 = ["tokio/rt"] serde-transport = ["serde1", "tokio1", "tokio-serde", "tokio-util/codec"] serde-transport-json = ["tokio-serde/json"] serde-transport-bincode = ["tokio-serde/bincode"]