diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-12-01 13:36:02 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-12-01 13:36:02 +0000 |
commit | bb697727a2e43d734a1bf3aae7644a9249aee11e (patch) | |
tree | 6e46f0bad9a4f36a6301049dfcc5c1ca400e94ff | |
parent | a18392bd903dd764c6c5f5efee0b3d789ee12e52 (diff) | |
parent | e4ffd70c915046e8286a25d66a530fae7e351912 (diff) |
Merge #6690
6690: lsp-types 0.85: Fixes OptionalVersionedTextDocumentIdentifier specification r=kjeremy a=kjeremy
Fixes #6654
Co-authored-by: kjeremy <[email protected]>
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | crates/rust-analyzer/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/rust-analyzer/src/semantic_tokens.rs | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock index 7391542e4..d8838cf2b 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -864,9 +864,9 @@ dependencies = [ | |||
864 | 864 | ||
865 | [[package]] | 865 | [[package]] |
866 | name = "lsp-types" | 866 | name = "lsp-types" |
867 | version = "0.84.0" | 867 | version = "0.85.0" |
868 | source = "registry+https://github.com/rust-lang/crates.io-index" | 868 | source = "registry+https://github.com/rust-lang/crates.io-index" |
869 | checksum = "3b95be71fe205e44de754185bcf86447b65813ce1ceb298f8d3793ade5fff08d" | 869 | checksum = "857650f3e83fb62f89d15410414e0ed7d0735445020da398d37f65d20a5423b9" |
870 | dependencies = [ | 870 | dependencies = [ |
871 | "base64", | 871 | "base64", |
872 | "bitflags", | 872 | "bitflags", |
diff --git a/crates/rust-analyzer/Cargo.toml b/crates/rust-analyzer/Cargo.toml index 08559b53a..0a055b039 100644 --- a/crates/rust-analyzer/Cargo.toml +++ b/crates/rust-analyzer/Cargo.toml | |||
@@ -21,7 +21,7 @@ env_logger = { version = "0.8.1", default-features = false } | |||
21 | itertools = "0.9.0" | 21 | itertools = "0.9.0" |
22 | jod-thread = "0.1.0" | 22 | jod-thread = "0.1.0" |
23 | log = "0.4.8" | 23 | log = "0.4.8" |
24 | lsp-types = { version = "0.84.0", features = ["proposed"] } | 24 | lsp-types = { version = "0.85.0", features = ["proposed"] } |
25 | parking_lot = "0.11.0" | 25 | parking_lot = "0.11.0" |
26 | pico-args = "0.3.1" | 26 | pico-args = "0.3.1" |
27 | oorandom = "11.1.2" | 27 | oorandom = "11.1.2" |
diff --git a/crates/rust-analyzer/src/semantic_tokens.rs b/crates/rust-analyzer/src/semantic_tokens.rs index e7991fd28..1daad1c98 100644 --- a/crates/rust-analyzer/src/semantic_tokens.rs +++ b/crates/rust-analyzer/src/semantic_tokens.rs | |||
@@ -27,7 +27,7 @@ macro_rules! define_semantic_token_types { | |||
27 | SemanticTokenType::ENUM_MEMBER, | 27 | SemanticTokenType::ENUM_MEMBER, |
28 | SemanticTokenType::TYPE_PARAMETER, | 28 | SemanticTokenType::TYPE_PARAMETER, |
29 | SemanticTokenType::FUNCTION, | 29 | SemanticTokenType::FUNCTION, |
30 | SemanticTokenType::MEMBER, | 30 | SemanticTokenType::METHOD, |
31 | SemanticTokenType::PROPERTY, | 31 | SemanticTokenType::PROPERTY, |
32 | SemanticTokenType::MACRO, | 32 | SemanticTokenType::MACRO, |
33 | SemanticTokenType::VARIABLE, | 33 | SemanticTokenType::VARIABLE, |