diff options
author | Blaž Hrastnik | 2020-09-08 05:32:20 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-09-08 12:05:28 +0000 |
commit | e282fc75951f7877f8e59fe5421f57e1dcbc0d73 (patch) | |
tree | 55c042110ffda40889d890ff06fefe32751c062f /helix-term | |
parent | 9ad40bc40b57f88d2c81a5dc55373bd6e31a6c21 (diff) |
Bump deps, eliminate a lot of transitive deps.
Diffstat (limited to 'helix-term')
-rw-r--r-- | helix-term/Cargo.toml | 8 | ||||
-rw-r--r-- | helix-term/src/editor.rs | 3 |
2 files changed, 5 insertions, 6 deletions
diff --git a/helix-term/Cargo.toml b/helix-term/Cargo.toml index b5f7484e..e6aa68d3 100644 --- a/helix-term/Cargo.toml +++ b/helix-term/Cargo.toml @@ -14,13 +14,11 @@ path = "src/main.rs" # termwiz = { git = "https://github.com/wez/wezterm", features = ["widgets"] } # termwiz = { path = "../../wezterm/termwiz", default-features = false, features = ["widgets"] } -anyhow = "1.0.31" +anyhow = "1" argh = "0.1.3" helix-core = { path = "../helix-core" } -crossterm = { version = "0.17.7", features = ["event-stream"] } +crossterm = { version = "0.17", features = ["event-stream"] } -smol = "0.4" -futures = { version = "0.3.5", default-features = false, features = ["std", "async-await"] } +smol = "1" num_cpus = "1.13.0" tui = { version = "0.10.0", default-features = false, features = ["crossterm"] } -# futures-timer = "3.0.2" diff --git a/helix-term/src/editor.rs b/helix-term/src/editor.rs index a6de3e0b..e019b5ba 100644 --- a/helix-term/src/editor.rs +++ b/helix-term/src/editor.rs @@ -8,8 +8,9 @@ use crossterm::{ style::{Color, Print, SetForegroundColor}, terminal::{self, disable_raw_mode, enable_raw_mode}, }; -use futures::{future::FutureExt, select, StreamExt}; + use helix_core::{state::coords_at_pos, state::Mode, State}; +use smol::prelude::*; use std::io::{self, stdout, Write}; use std::path::PathBuf; use std::time::Duration; |