diff options
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | crates/rust-analyzer/src/caps.rs | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock index c10d72aa4..a808f4743 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -665,9 +665,9 @@ dependencies = [ | |||
665 | 665 | ||
666 | [[package]] | 666 | [[package]] |
667 | name = "lsp-types" | 667 | name = "lsp-types" |
668 | version = "0.70.1" | 668 | version = "0.70.2" |
669 | source = "registry+https://github.com/rust-lang/crates.io-index" | 669 | source = "registry+https://github.com/rust-lang/crates.io-index" |
670 | checksum = "d267f222864db3db63cf7e18493a2a5c84edab1f4e3c7211c9390ce033365210" | 670 | checksum = "6743fb3902ab3dfa6ce030daeac6ff492e20bb0fee840739d16f6bfb0efaf91c" |
671 | dependencies = [ | 671 | dependencies = [ |
672 | "base64", | 672 | "base64", |
673 | "bitflags", | 673 | "bitflags", |
diff --git a/crates/rust-analyzer/src/caps.rs b/crates/rust-analyzer/src/caps.rs index c4711076c..c9fd645f1 100644 --- a/crates/rust-analyzer/src/caps.rs +++ b/crates/rust-analyzer/src/caps.rs | |||
@@ -57,6 +57,7 @@ pub fn server_capabilities() -> ServerCapabilities { | |||
57 | execute_command_provider: None, | 57 | execute_command_provider: None, |
58 | workspace: None, | 58 | workspace: None, |
59 | call_hierarchy_provider: Some(CallHierarchyServerCapability::Simple(true)), | 59 | call_hierarchy_provider: Some(CallHierarchyServerCapability::Simple(true)), |
60 | semantic_tokens_provider: None, | ||
60 | experimental: Default::default(), | 61 | experimental: Default::default(), |
61 | } | 62 | } |
62 | } | 63 | } |