Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-lsp/Cargo.toml')
| -rw-r--r-- | helix-lsp/Cargo.toml | 38 |
1 files changed, 16 insertions, 22 deletions
diff --git a/helix-lsp/Cargo.toml b/helix-lsp/Cargo.toml index 6156be9a..d04edcd5 100644 --- a/helix-lsp/Cargo.toml +++ b/helix-lsp/Cargo.toml @@ -1,34 +1,28 @@ [package] name = "helix-lsp" +version = "0.6.0" +authors = ["Blaž Hrastnik <[email protected]>"] +edition = "2021" +license = "MPL-2.0" description = "LSP client implementation for Helix project" -version.workspace = true -authors.workspace = true -edition.workspace = true -license.workspace = true -rust-version.workspace = true -categories.workspace = true -repository.workspace = true -homepage.workspace = true +categories = ["editor"] +repository = "https://github.com/helix-editor/helix" +homepage = "https://helix-editor.com" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -helix-stdx = { path = "../helix-stdx" } -helix-core = { path = "../helix-core" } -helix-loader = { path = "../helix-loader" } -helix-lsp-types = { path = "../helix-lsp-types" } +helix-core = { version = "0.6", path = "../helix-core" } +helix-loader = { version = "0.6", path = "../helix-loader" } anyhow = "1.0" -futures-executor.workspace = true -futures-util.workspace = true -globset.workspace = true +futures-executor = "0.3" +futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false } log = "0.4" +lsp-types = { version = "0.93", features = ["proposed"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -tokio = { version = "1.48", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot", "sync"] } -tokio-stream.workspace = true -parking_lot.workspace = true -arc-swap = "1" -slotmap.workspace = true -thiserror.workspace = true -sonic-rs.workspace = true +thiserror = "1.0" +tokio = { version = "1.23", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot", "sync"] } +tokio-stream = "0.1.11" +which = "4.2" |