Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/Cargo.toml')
| -rw-r--r-- | helix-term/Cargo.toml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/helix-term/Cargo.toml b/helix-term/Cargo.toml index 4585aaad..f196be0a 100644 --- a/helix-term/Cargo.toml +++ b/helix-term/Cargo.toml @@ -54,7 +54,7 @@ anyhow = "1" once_cell = "1.21" tokio = { version = "1", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot"] } -tui = { path = "../helix-tui", package = "helix-tui", default-features = false, features = ["termina"] } +tui = { path = "../helix-tui", package = "helix-tui", default-features = false, features = ["termina", "crossterm"] } termina = { workspace = true, features = ["event-stream"] } signal-hook = "0.3" tokio-stream = "0.1" @@ -93,6 +93,9 @@ grep-searcher = "0.1.14" dashmap = "6.0" +[target.'cfg(windows)'.dependencies] +crossterm = { version = "0.28", features = ["event-stream"] } + [target.'cfg(not(windows))'.dependencies] # https://github.com/vorner/signal-hook/issues/100 signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] } libc = "0.2.175" |