diff options
author | Blaž Hrastnik | 2020-05-25 04:02:21 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-05-25 04:02:21 +0000 |
commit | 44ff4d3c1f5da05e57ce99ba9d67b80a334def83 (patch) | |
tree | 232b8eebab7f709eaf84b8649791a6c74448bfdb /helix-term/Cargo.toml | |
parent | 240e5f4e3d27415b792776dd126d15302d53e83b (diff) |
Implement a new core based on CodeMirror.
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" } |