Unnamed repository; edit this file 'description' to name the repository.
| -rw-r--r-- | Cargo.lock | 15 | ||||
| -rw-r--r-- | lib/lsp-server/Cargo.toml | 4 |
2 files changed, 4 insertions, 15 deletions
diff --git a/Cargo.lock b/Cargo.lock index f0c690f2e7..0db64945c2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -795,17 +795,6 @@ dependencies = [ ] [[package]] -name = "helix-lsp-types" -version = "0.95.1" -source = "git+https://github.com/bend-n/helix#bcfbb875c88765c3c3af3d46f230d9efa37db353" -dependencies = [ - "bitflags 2.10.0", - "serde", - "serde_json", - "url", -] - -[[package]] name = "hermit-abi" version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1457,7 +1446,7 @@ dependencies = [ "anyhow", "crossbeam-channel", "ctrlc", - "helix-lsp-types 0.95.1 (git+https://github.com/bend-n/helix)", + "helix-lsp-types", "log", "rustc-hash 2.1.1", "serde", @@ -2338,7 +2327,7 @@ dependencies = [ "dirs", "dissimilar", "expect-test", - "helix-lsp-types 0.95.1 (git+https://git.bendn.org/helix)", + "helix-lsp-types", "hir", "hir-def", "hir-ty", diff --git a/lib/lsp-server/Cargo.toml b/lib/lsp-server/Cargo.toml index 5c709f4a5b..03a4f08108 100644 --- a/lib/lsp-server/Cargo.toml +++ b/lib/lsp-server/Cargo.toml @@ -12,10 +12,10 @@ serde_json = "1.0.140" serde = { version = "1.0.219" } serde_derive = { version = "1.0.219" } crossbeam-channel.workspace = true -lsp-types = { git = "https://github.com/bend-n/helix", package = "helix-lsp-types" } +lsp-types = { git = "https://git.bendn.org/helix", package = "helix-lsp-types" } [dev-dependencies] -lsp-types = { git = "https://github.com/bend-n/helix", package = "helix-lsp-types" } +lsp-types = { git = "https://git.bendn.org/helix", package = "helix-lsp-types" } ctrlc = "3.4.7" anyhow.workspace = true rustc-hash.workspace = true |