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.
This commit is contained in:
Yuya Nishihara 2025-01-12 17:23:58 +09:00
parent be5eb27f16
commit 367befc1f2

View file

@ -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"