Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/Cargo.toml')
| -rw-r--r-- | helix-term/Cargo.toml | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/helix-term/Cargo.toml b/helix-term/Cargo.toml index bb63bb22..4585aaad 100644 --- a/helix-term/Cargo.toml +++ b/helix-term/Cargo.toml @@ -54,8 +54,8 @@ 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 = ["crossterm"] } -crossterm = { version = "0.28", features = ["event-stream"] } +tui = { path = "../helix-tui", package = "helix-tui", default-features = false, features = ["termina"] } +termina = { workspace = true, features = ["event-stream"] } signal-hook = "0.3" tokio-stream = "0.1" futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false } @@ -97,9 +97,6 @@ dashmap = "6.0" signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] } libc = "0.2.175" -[target.'cfg(target_os = "macos")'.dependencies] -crossterm = { version = "0.28", features = ["event-stream", "use-dev-tty", "libc"] } - [build-dependencies] helix-loader = { path = "../helix-loader" } |