Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/Cargo.toml')
| -rw-r--r-- | helix-term/Cargo.toml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/helix-term/Cargo.toml b/helix-term/Cargo.toml index 6ddb8164..cd4973ad 100644 --- a/helix-term/Cargo.toml +++ b/helix-term/Cargo.toml @@ -16,8 +16,9 @@ build = true app = true [features] -# default = ["dap"] +default = ["dap", "lsp"] dap = ["helix-dap", "helix-view/dap"] +lsp = ["helix-lsp", "helix-view/lsp"] unicode-lines = ["helix-core/unicode-lines"] [[bin]] @@ -26,8 +27,8 @@ path = "src/main.rs" [dependencies] helix-core = { version = "0.6", path = "../helix-core" } -helix-view = { version = "0.6", path = "../helix-view" } -helix-lsp = { version = "0.6", path = "../helix-lsp" } +helix-view = { version = "0.6", path = "../helix-view", features = ["term"] } +helix-lsp = { version = "0.6", path = "../helix-lsp", optional = true } helix-dap = { version = "0.6", path = "../helix-dap", optional = true } helix-loader = { version = "0.6", path = "../helix-loader" } |