From b03f1efac4b343ef7881fde1e6645f600530ad3e Mon Sep 17 00:00:00 2001 From: Marc Schreiber Date: Thu, 7 Dec 2023 00:19:03 +0100 Subject: [PATCH] Upgrade lsp-server Dependency (#11252) The lsp-server crate has been released and thus it is now possible to depend on this version rather on the git dependency of the crate. --- Cargo.lock | 5 +++-- crates/nu-lsp/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fe34b47a50..a8f0da42a1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2282,8 +2282,9 @@ dependencies = [ [[package]] name = "lsp-server" -version = "0.7.4" -source = "git+https://github.com/schrieveslaach/rust-analyzer.git?branch=cancelable-initialization#81c2d3552e6d377bf0332523c1278b7e5723c27c" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb69ba934913ebf0ef3b3dd762f0149bf993decd571d094b646de09c2e456732" dependencies = [ "crossbeam-channel", "log", diff --git a/crates/nu-lsp/Cargo.toml b/crates/nu-lsp/Cargo.toml index d31b4a47d1..77738c60ad 100644 --- a/crates/nu-lsp/Cargo.toml +++ b/crates/nu-lsp/Cargo.toml @@ -16,7 +16,7 @@ reedline = { version = "0.26" } crossbeam-channel = "0.5.8" lsp-types = "0.94.1" -lsp-server = { version = "0.7.4", git = "https://github.com/schrieveslaach/rust-analyzer.git", branch = "cancelable-initialization" } +lsp-server = "0.7.5" miette = "5.10" ropey = "1.6.1" serde = "1.0"