3334: Update lsp-types r=matklad a=kjeremy

Uses the correct type for the currently unused `SemanticTokensEditsRequest::Return`

Co-authored-by: kjeremy <kjeremy@gmail.com>
This commit is contained in:
bors[bot] 2020-02-26 21:53:29 +00:00 committed by GitHub
commit 05388b4ea4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

4
Cargo.lock generated
View file

@ -662,9 +662,9 @@ dependencies = [
[[package]]
name = "lsp-types"
version = "0.70.2"
version = "0.71.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6743fb3902ab3dfa6ce030daeac6ff492e20bb0fee840739d16f6bfb0efaf91c"
checksum = "efa6b75633b0c3412ee36fc416e6d9c1e4ff576b536217f4ac3f34ac83d9e564"
dependencies = [
"base64",
"bitflags",

View file

@ -6,7 +6,7 @@ authors = ["rust-analyzer developers"]
[dependencies]
crossbeam-channel = "0.4.0"
lsp-types = { version = "0.70.1", features = ["proposed"] }
lsp-types = { version = "0.71.0", features = ["proposed"] }
log = "0.4.8"
cargo_metadata = "0.9.1"
jod-thread = "0.1.0"

View file

@ -21,7 +21,7 @@ globset = "0.4.4"
itertools = "0.8.2"
jod-thread = "0.1.0"
log = "0.4.8"
lsp-types = { version = "0.70.1", features = ["proposed"] }
lsp-types = { version = "0.71.0", features = ["proposed"] }
parking_lot = "0.10.0"
pico-args = "0.3.1"
rand = { version = "0.7.3", features = ["small_rng"] }