Unnamed repository; edit this file 'description' to name the repository.
| -rw-r--r-- | Cargo.lock | 1 | ||||
| -rw-r--r-- | crates/rust-analyzer/src/diagnostics/flycheck_to_proto.rs | 2 | ||||
| -rw-r--r-- | lib/lsp-server/Cargo.toml | 4 |
3 files changed, 4 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index e19ac93f0c..1599f458da 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -770,6 +770,7 @@ dependencies = [ [[package]] name = "helix-lsp-types" version = "0.95.1" +source = "git+https://github.com/bend-n/helix#9e8efb0a840f362070bd972fd0b75f5c70982202" dependencies = [ "bitflags 2.10.0", "serde", diff --git a/crates/rust-analyzer/src/diagnostics/flycheck_to_proto.rs b/crates/rust-analyzer/src/diagnostics/flycheck_to_proto.rs index 64521010e3..98aa3da46e 100644 --- a/crates/rust-analyzer/src/diagnostics/flycheck_to_proto.rs +++ b/crates/rust-analyzer/src/diagnostics/flycheck_to_proto.rs @@ -457,7 +457,7 @@ pub(crate) fn map_rust_diagnostic_to_lsp( }, fix: None, }); - + } diagnostics } diff --git a/lib/lsp-server/Cargo.toml b/lib/lsp-server/Cargo.toml index 01c834e266..5c709f4a5b 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 = { path = "/home/os/helix/helix-lsp-types", package = "helix-lsp-types" } +lsp-types = { git = "https://github.com/bend-n/helix", package = "helix-lsp-types" } [dev-dependencies] -lsp-types = { path = "/home/os/helix/helix-lsp-types", package = "helix-lsp-types" } +lsp-types = { git = "https://github.com/bend-n/helix", package = "helix-lsp-types" } ctrlc = "3.4.7" anyhow.workspace = true rustc-hash.workspace = true |