Skip to content

Commit 7e4389a

Browse files
authored
Update dependencies (#1099)
1 parent c2e1ab0 commit 7e4389a

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ serde_derive = "1"
2727
serde_json = "1"
2828
json-patch = "0.2"
2929
crossbeam = "0.7.3"
30-
jsonrpc-core = "12"
31-
lsp-types = { version = "0.78", features = ["proposed"] }
30+
jsonrpc-core = "15"
31+
lsp-types = { version = "0.82", features = ["proposed"] }
3232
url = "2"
3333
pathdiff = "0"
3434
diff = "0"
@@ -37,5 +37,5 @@ glob = "0"
3737
notify = "4"
3838
shellexpand = "2.0.0"
3939
derivative = "2.1.1"
40-
anyhow = "1.0.31"
41-
thiserror = "1.0.19"
40+
anyhow = "1.0.32"
41+
thiserror = "1.0.20"

src/language_server_protocol.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1213,6 +1213,7 @@ impl LanguageClient {
12131213
}),
12141214
signature_help: Some(SignatureHelpCapability {
12151215
signature_information: Some(SignatureInformationSettings {
1216+
active_parameter_support: None,
12161217
documentation_format: preferred_markup_kind.clone(),
12171218
parameter_information: Some(ParameterInformationSettings {
12181219
label_offset_support: Some(true),
@@ -2333,6 +2334,7 @@ impl LanguageClient {
23332334
self.get_client(&Some(language_id))?.notify(
23342335
lsp_types::notification::DidSaveTextDocument::METHOD,
23352336
DidSaveTextDocumentParams {
2337+
text: None,
23362338
text_document: TextDocumentIdentifier { uri },
23372339
},
23382340
)?;

0 commit comments

Comments
 (0)