Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 50a1319

Browse files
committed
Bump lsp-types
1 parent c8f056a commit 50a1319

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.lock

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

crates/rust-analyzer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ anyhow = "1.0.26"
2222
crossbeam-channel = "0.5.0"
2323
dissimilar = "1.0.2"
2424
itertools = "0.10.0"
25-
lsp-types = { version = "0.91", features = ["proposed"] }
25+
lsp-types = { version = "0.92", features = ["proposed"] }
2626
parking_lot = "0.12"
2727
xflags = "0.2.1"
2828
oorandom = "11.1.2"

crates/rust-analyzer/src/main_loop.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ impl GlobalState {
455455
// Refresh semantic tokens if the client supports it.
456456
if self.config.semantic_tokens_refresh() {
457457
self.semantic_tokens_cache.lock().clear();
458-
self.send_request::<lsp_types::request::SemanticTokensRefesh>((), |_, _| ());
458+
self.send_request::<lsp_types::request::SemanticTokensRefresh>((), |_, _| ());
459459
}
460460

461461
// Refresh code lens if the client supports it.

0 commit comments

Comments
 (0)