diff options
author | Michael Davis | 2023-01-11 02:48:26 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2023-02-28 03:35:52 +0000 |
commit | 79bf5e3094e16a34637703b14c7bf090d2dcf155 (patch) | |
tree | e21867b85eb4ffaad4ffa749222034c8a69e8c12 /helix-term | |
parent | a976786a4fa013150ec1b59ae55276361e61340f (diff) |
Update crossterm to 0.26.1
Crossterm 0.26.x includes a breaking change for the command to set the
cursor shape. This commit includes a change which uses the new type.
Diffstat (limited to 'helix-term')
-rw-r--r-- | helix-term/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/Cargo.toml b/helix-term/Cargo.toml index 4921db92..975d0871 100644 --- a/helix-term/Cargo.toml +++ b/helix-term/Cargo.toml @@ -37,7 +37,7 @@ which = "4.4" 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.25", features = ["event-stream"] } +crossterm = { version = "0.26", features = ["event-stream"] } signal-hook = "0.3" tokio-stream = "0.1" futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false } |