diff options
-rw-r--r-- | Cargo.lock | 6 | ||||
-rw-r--r-- | crates/ra_lsp_server/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/ra_lsp_server/src/caps.rs | 1 |
3 files changed, 5 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock index d1fa5ebee..ca2a88f28 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -665,7 +665,7 @@ dependencies = [ | |||
665 | 665 | ||
666 | [[package]] | 666 | [[package]] |
667 | name = "lsp-types" | 667 | name = "lsp-types" |
668 | version = "0.60.0" | 668 | version = "0.61.0" |
669 | source = "registry+https://github.com/rust-lang/crates.io-index" | 669 | source = "registry+https://github.com/rust-lang/crates.io-index" |
670 | dependencies = [ | 670 | dependencies = [ |
671 | "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 671 | "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -1066,7 +1066,7 @@ dependencies = [ | |||
1066 | "jod-thread 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1066 | "jod-thread 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
1067 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1067 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", |
1068 | "lsp-server 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1068 | "lsp-server 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", |
1069 | "lsp-types 0.60.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1069 | "lsp-types 0.61.0 (registry+https://github.com/rust-lang/crates.io-index)", |
1070 | "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1070 | "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", |
1071 | "ra_ide_api 0.1.0", | 1071 | "ra_ide_api 0.1.0", |
1072 | "ra_prof 0.1.0", | 1072 | "ra_prof 0.1.0", |
@@ -1924,7 +1924,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1924 | "checksum lock_api 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f8912e782533a93a167888781b836336a6ca5da6175c05944c86cf28c31104dc" | 1924 | "checksum lock_api 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f8912e782533a93a167888781b836336a6ca5da6175c05944c86cf28c31104dc" |
1925 | "checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" | 1925 | "checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" |
1926 | "checksum lsp-server 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "148cfb1c0b3295c23d9fb4a20fd1b242f5e6f46c525fdcc7f5c0a65710362012" | 1926 | "checksum lsp-server 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "148cfb1c0b3295c23d9fb4a20fd1b242f5e6f46c525fdcc7f5c0a65710362012" |
1927 | "checksum lsp-types 0.60.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fe3edefcd66dde1f7f1df706f46520a3c93adc5ca4bc5747da6621195e894efd" | 1927 | "checksum lsp-types 0.61.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fa3268fbe8beb2795c2fb327bf44f4f3d24f5fe9ebc18d7e2980afd444d72bcf" |
1928 | "checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" | 1928 | "checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" |
1929 | "checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e" | 1929 | "checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e" |
1930 | "checksum memoffset 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ce6075db033bbbb7ee5a0bbd3a3186bbae616f57fb001c485c7ff77955f8177f" | 1930 | "checksum memoffset 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ce6075db033bbbb7ee5a0bbd3a3186bbae616f57fb001c485c7ff77955f8177f" |
diff --git a/crates/ra_lsp_server/Cargo.toml b/crates/ra_lsp_server/Cargo.toml index eb4812633..07cc2dd32 100644 --- a/crates/ra_lsp_server/Cargo.toml +++ b/crates/ra_lsp_server/Cargo.toml | |||
@@ -12,7 +12,7 @@ serde = { version = "1.0.83", features = ["derive"] } | |||
12 | crossbeam-channel = "0.3.5" | 12 | crossbeam-channel = "0.3.5" |
13 | flexi_logger = "0.14.0" | 13 | flexi_logger = "0.14.0" |
14 | log = "0.4.3" | 14 | log = "0.4.3" |
15 | lsp-types = { version = "0.60.0", features = ["proposed"] } | 15 | lsp-types = { version = "0.61.0", features = ["proposed"] } |
16 | rustc-hash = "1.0" | 16 | rustc-hash = "1.0" |
17 | parking_lot = "0.9.0" | 17 | parking_lot = "0.9.0" |
18 | jod-thread = "0.1.0" | 18 | jod-thread = "0.1.0" |
diff --git a/crates/ra_lsp_server/src/caps.rs b/crates/ra_lsp_server/src/caps.rs index bb9205aed..22fc97a97 100644 --- a/crates/ra_lsp_server/src/caps.rs +++ b/crates/ra_lsp_server/src/caps.rs | |||
@@ -43,6 +43,7 @@ pub fn server_capabilities() -> ServerCapabilities { | |||
43 | rename_provider: Some(RenameProviderCapability::Options(RenameOptions { | 43 | rename_provider: Some(RenameProviderCapability::Options(RenameOptions { |
44 | prepare_provider: Some(true), | 44 | prepare_provider: Some(true), |
45 | })), | 45 | })), |
46 | document_link_provider: None, | ||
46 | color_provider: None, | 47 | color_provider: None, |
47 | execute_command_provider: None, | 48 | execute_command_provider: None, |
48 | workspace: None, | 49 | workspace: None, |