diff options
author | Skyler Hawthorne | 2023-12-05 01:54:18 +0000 |
---|---|---|
committer | GitHub | 2023-12-05 01:54:18 +0000 |
commit | bf7c4e165946f7a5be48c9d7e8abb8e68f066882 (patch) | |
tree | 2e5660f2562e0b6f424af4792348e7c3546e86ab /helix-lsp | |
parent | 44c3d48a941c5e2d6484c808c9066b91cfbcf0ec (diff) |
use workspace inheritance for common version (#8925)
Diffstat (limited to 'helix-lsp')
-rw-r--r-- | helix-lsp/Cargo.toml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/helix-lsp/Cargo.toml b/helix-lsp/Cargo.toml index d9507f1b..66b67f8e 100644 --- a/helix-lsp/Cargo.toml +++ b/helix-lsp/Cargo.toml @@ -1,21 +1,21 @@ [package] name = "helix-lsp" -version = "0.6.0" -authors = ["Blaž Hrastnik <blaz@mxxn.io>"] +description = "LSP client implementation for Helix project" +version.workspace = true +authors.workspace = true edition.workspace = true license.workspace = true rust-version.workspace = true -description = "LSP client implementation for Helix project" -categories = ["editor"] -repository = "https://github.com/helix-editor/helix" -homepage = "https://helix-editor.com" +categories.workspace = true +repository.workspace = true +homepage.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -helix-core = { version = "0.6", path = "../helix-core" } -helix-loader = { version = "0.6", path = "../helix-loader" } -helix-parsec = { version = "0.6", path = "../helix-parsec" } +helix-core = { path = "../helix-core" } +helix-loader = { path = "../helix-loader" } +helix-parsec = { path = "../helix-parsec" } anyhow = "1.0" futures-executor = "0.3" |