diff options
Diffstat (limited to 'helix-view')
-rw-r--r-- | helix-view/Cargo.toml | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/helix-view/Cargo.toml b/helix-view/Cargo.toml index 9fc83d4c..5fb6d96b 100644 --- a/helix-view/Cargo.toml +++ b/helix-view/Cargo.toml @@ -1,29 +1,30 @@ [package] name = "helix-view" -version = "0.6.0" -authors = ["Blaž Hrastnik <blaz@mxxn.io>"] +description = "UI abstractions for use in backends" +version.workspace = true +authors.workspace = true edition.workspace = true license.workspace = true rust-version.workspace = true -description = "UI abstractions for use in backends" -categories = ["editor"] -repository = "https://github.com/helix-editor/helix" -homepage = "https://helix-editor.com" +categories.workspace = true +repository.workspace = true +homepage.workspace = true [features] default = [] term = ["crossterm"] [dependencies] +helix-core = { path = "../helix-core" } +helix-event = { path = "../helix-event" } +helix-loader = { path = "../helix-loader" } +helix-lsp = { path = "../helix-lsp" } +helix-dap = { path = "../helix-dap" } +helix-vcs = { path = "../helix-vcs" } + bitflags = "2.4" anyhow = "1" -helix-core = { version = "0.6", path = "../helix-core" } -helix-event = { version = "0.6", path = "../helix-event" } -helix-loader = { version = "0.6", path = "../helix-loader" } -helix-lsp = { version = "0.6", path = "../helix-lsp" } -helix-dap = { version = "0.6", path = "../helix-dap" } crossterm = { version = "0.27", optional = true } -helix-vcs = { version = "0.6", path = "../helix-vcs" } # Conversion traits once_cell = "1.18" |