diff options
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 f6528034..ea4d5b55 100644 --- a/helix-term/Cargo.toml +++ b/helix-term/Cargo.toml @@ -15,5 +15,8 @@ path = "src/main.rs" # path = "src/line.rs" [dependencies] -termwiz = { git = "https://github.com/wez/wezterm", features = ["widgets"] } +# termwiz = { git = "https://github.com/wez/wezterm", features = ["widgets"] } +termwiz = { path = "../../wezterm/termwiz", default-features = false, features = ["widgets"] } anyhow = "1.0.31" +argh = "0.1.3" +helix-core = { path = "../helix-core" } |