From 367befc1f215d63ac98fc3fc91807ebe38b8530e Mon Sep 17 00:00:00 2001 From: Yuya Nishihara Date: Sun, 12 Jan 2025 17:23:58 +0900 Subject: [PATCH] cargo: add missing "windows" feature to crossterm dependency Perhaps, the "windows" feature was enabled through "minus" or "scm-record". If I removed "minus" in earlier revision, the Windows build of crossterm 0.27.0 failed. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 31626e375..9fb810701 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ chrono = { version = "0.4.39", default-features = false, features = [ chrono-english = { version = "0.1.7" } clru = "0.6.2" criterion = "0.5.1" -crossterm = { version = "0.28", default-features = false } +crossterm = { version = "0.28", default-features = false, features = ["windows"] } digest = "0.10.7" dirs = "5.0.1" dunce = "1.0.5"