Auto merge of #71875 - Xanewok:update-rls, r=tmandry

Update RLS

In addition to fixing the toolstate, this also changes the default
compilation model to the out-of-process one, which should hopefully
target considerable memory usage for long-running instances of the RLS.

Fixes #71753

r? @ghost
This commit is contained in:
bors 2020-05-05 23:52:56 +00:00
commit 43271a39ad
3 changed files with 10 additions and 4 deletions

View File

@ -3102,7 +3102,6 @@ version = "0.6.0"
dependencies = [
"clippy_lints",
"env_logger 0.7.1",
"failure",
"futures",
"log",
"rand 0.7.3",
@ -3504,11 +3503,14 @@ name = "rustc-workspace-hack"
version = "1.0.0"
dependencies = [
"crossbeam-utils 0.7.2",
"proc-macro2 1.0.3",
"quote 1.0.2",
"serde",
"serde_json",
"smallvec 0.6.10",
"smallvec 1.4.0",
"syn 0.15.35",
"syn 1.0.11",
"url 2.1.0",
"winapi 0.3.8",
]

@ -1 +1 @@
Subproject commit 75491db0bff74a14dc6392b1491043bc7c924c65
Subproject commit 1cb7c09eb245454648bdecd61fa93bace3041b6d

View File

@ -17,6 +17,8 @@ path = "lib.rs"
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3"
features = [
"aclapi",
"accctrl",
"basetsd",
"consoleapi",
"errhandlingapi",
@ -60,16 +62,18 @@ features = [
[dependencies]
curl-sys = { version = "0.4.13", features = ["http2", "libnghttp2-sys"], optional = true }
crossbeam-utils = { version = "0.7.2", features = ["nightly"] }
proc-macro2 = { version = "1", features = ["default"] }
quote = { version = "1", features = ["default"] }
serde = { version = "1.0.82", features = ['derive'] }
serde_json = { version = "1.0.31", features = ["raw_value"] }
smallvec-0_6 = { package = "smallvec", version = "0.6", features = ['union', 'may_dangle'] }
smallvec = { version = "1.0", features = ['union', 'may_dangle'] }
url = { version = "2.0", features = ['serde'] }
syn = { version = "0.15", features = ['full', 'extra-traits'] }
syn-1 = { package = "syn", version = "1", features = ['fold', 'full', 'extra-traits', 'visit'] }
url = { version = "2.0", features = ['serde'] }
[target.'cfg(not(windows))'.dependencies]
openssl = { version = "0.10.12", optional = true }
[features]
all-static = ['openssl/vendored', 'curl-sys/static-curl', 'curl-sys/force-system-lib-on-osx']