From 489c8a66096c881564f43734e5669abea5104313 Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Sun, 12 May 2024 16:08:02 +0200 Subject: [PATCH] Add missing tokio features to lune-std-process crate --- crates/lune-std-process/Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/crates/lune-std-process/Cargo.toml b/crates/lune-std-process/Cargo.toml index 42d720b..f9a1de3 100644 --- a/crates/lune-std-process/Cargo.toml +++ b/crates/lune-std-process/Cargo.toml @@ -21,8 +21,10 @@ pin-project = "1.0" os_str_bytes = { version = "7.0", features = ["conversions"] } tokio = { version = "1", default-features = false, features = [ - "sync", + "io-util", "process", + "rt", + "sync", ] } lune-utils = { version = "0.1.0", path = "../lune-utils" }