mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 14:21:44 +00:00
LSP 3.16 - Released
This commit is contained in:
parent
763824e775
commit
d828bd794b
6 changed files with 54 additions and 37 deletions
|
@ -21,7 +21,7 @@ env_logger = { version = "0.8.1", default-features = false }
|
|||
itertools = "0.9.0"
|
||||
jod-thread = "0.1.0"
|
||||
log = "0.4.8"
|
||||
lsp-types = { version = "0.85.0", features = ["proposed"] }
|
||||
lsp-types = { version = "0.86.0", features = ["proposed"] }
|
||||
parking_lot = "0.11.0"
|
||||
pico-args = "0.3.1"
|
||||
oorandom = "11.1.2"
|
||||
|
|
|
@ -64,7 +64,7 @@ pub fn server_capabilities(client_caps: &ClientCapabilities) -> ServerCapabiliti
|
|||
prepare_provider: Some(true),
|
||||
work_done_progress_options: WorkDoneProgressOptions { work_done_progress: None },
|
||||
})),
|
||||
on_type_rename_provider: None,
|
||||
linked_editing_range_provider: None,
|
||||
document_link_provider: None,
|
||||
color_provider: None,
|
||||
execute_command_provider: None,
|
||||
|
@ -83,6 +83,7 @@ pub fn server_capabilities(client_caps: &ClientCapabilities) -> ServerCapabiliti
|
|||
}
|
||||
.into(),
|
||||
),
|
||||
moniker_provider: None,
|
||||
experimental: Some(json!({
|
||||
"joinLines": true,
|
||||
"ssr": true,
|
||||
|
|
|
@ -633,7 +633,7 @@ pub(crate) fn resource_op(
|
|||
lsp_types::ResourceOp::Create(lsp_types::CreateFile {
|
||||
uri,
|
||||
options: None,
|
||||
annotation: None,
|
||||
annotation_id: None,
|
||||
})
|
||||
}
|
||||
FileSystemEdit::MoveFile { src, dst } => {
|
||||
|
@ -643,7 +643,7 @@ pub(crate) fn resource_op(
|
|||
old_uri,
|
||||
new_uri,
|
||||
options: None,
|
||||
annotation: None,
|
||||
annotation_id: None,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
@ -708,6 +708,7 @@ impl From<lsp_ext::SnippetWorkspaceEdit> for lsp_types::WorkspaceEdit {
|
|||
.collect(),
|
||||
)
|
||||
}),
|
||||
change_annotations: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue