diff --git a/Cargo.lock b/Cargo.lock index db879696..af444c91 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -113,8 +113,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df" dependencies = [ "bitflags", + "crossterm_winapi", "libc", "parking_lot", + "winapi", +] + +[[package]] +name = "crossterm_winapi" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b" +dependencies = [ + "winapi", ] [[package]] diff --git a/crates/hyfetch/Cargo.toml b/crates/hyfetch/Cargo.toml index c892aba8..63a4fbef 100644 --- a/crates/hyfetch/Cargo.toml +++ b/crates/hyfetch/Cargo.toml @@ -48,6 +48,7 @@ unicode-normalization = { workspace = true, features = ["std"] } enable-ansi-support = { workspace = true, features = [] } normpath = { workspace = true, features = [] } same-file = { workspace = true, features = [] } +crossterm = { workspace = true, features = ["windows"] } [features] default = ["autocomplete", "color", "macchina"]