diff options
Diffstat (limited to 'helix-view/Cargo.toml')
-rw-r--r-- | helix-view/Cargo.toml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/helix-view/Cargo.toml b/helix-view/Cargo.toml index 37957625..0d887474 100644 --- a/helix-view/Cargo.toml +++ b/helix-view/Cargo.toml @@ -10,9 +10,10 @@ edition = "2018" term = ["tui", "crossterm"] [dependencies] -anyhow = "1.0.32" +anyhow = "1" helix-core = { path = "../helix-core" } # Conversion traits -tui = { version = "0.10.0", default-features = false, features = ["crossterm"], optional = true} +tui = { version = "0.11", default-features = false, features = ["crossterm"], optional = true} crossterm = { version = "0.17", features = ["event-stream"], optional = true} +once_cell = "1.4" |