From 4b0406fe2a9ac1b766d796c45a151cfb4fe22223 Mon Sep 17 00:00:00 2001 From: Azriel Hoh Date: Mon, 2 Jan 2023 11:33:14 +1300 Subject: [PATCH 1/2] Remove `"fs"` feature in tokio dependency. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 17ee0f3d..9a96afa1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ console = { version = "0.15", default-features = false, features = ["ansi-parsin number_prefix = "0.4" portable-atomic = "0.3.15" rayon = { version = "1.1", optional = true } -tokio = { version = "1", optional = true, features = ["fs", "io-util"] } +tokio = { version = "1", optional = true, features = ["io-util"] } unicode-segmentation = { version = "1", optional = true } unicode-width = { version = "0.1", optional = true } vt100 = { version = "0.15.1", optional = true } From 5a2b60f88c0c2b5a59b47e028910649636fa1e5c Mon Sep 17 00:00:00 2001 From: Azriel Hoh Date: Mon, 2 Jan 2023 21:04:50 +1300 Subject: [PATCH 2/2] Add `"fs"` feature in tokio dev dependency. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9a96afa1..430b17f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ vt100 = { version = "0.15.1", optional = true } once_cell = "1" rand = "0.8" structopt = "0.3" -tokio = { version = "1", features = ["time", "rt"] } +tokio = { version = "1", features = ["fs", "time", "rt"] } [features] default = ["unicode-width", "console/unicode-width"]