Skip to content

Commit a50f29a

Browse files
committed
Update version of rls-data used with save-analysis
This part 1/3 for fixing #53440.
1 parent b202882 commit a50f29a

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

src/Cargo.lock

+11-1
Original file line numberDiff line numberDiff line change
@@ -1858,6 +1858,15 @@ dependencies = [
18581858
"serde_derive 1.0.70 (registry+https://github.com/rust-lang/crates.io-index)",
18591859
]
18601860

1861+
[[package]]
1862+
name = "rls-data"
1863+
version = "0.18.0"
1864+
source = "registry+https://github.com/rust-lang/crates.io-index"
1865+
dependencies = [
1866+
"rls-span 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
1867+
"rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)",
1868+
]
1869+
18611870
[[package]]
18621871
name = "rls-rustc"
18631872
version = "0.5.0"
@@ -2382,7 +2391,7 @@ name = "rustc_save_analysis"
23822391
version = "0.0.0"
23832392
dependencies = [
23842393
"log 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
2385-
"rls-data 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)",
2394+
"rls-data 0.18.0 (registry+https://github.com/rust-lang/crates.io-index)",
23862395
"rls-span 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
23872396
"rustc 0.0.0",
23882397
"rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -3286,6 +3295,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
32863295
"checksum rls-analysis 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)" = "96f84d303dcbe1c1bdd41b10867d3399c38fbdac32c4e3645cdb6dbd7f82db1d"
32873296
"checksum rls-blacklist 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e4a9cc2545ccb7e05b355bfe047b8039a6ec12270d5f3c996b766b340a50f7d2"
32883297
"checksum rls-data 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3dd20763e1c60ae8945384c8a8fa4ac44f8afa7b0a817511f5e8927e5d24f988"
3298+
"checksum rls-data 0.18.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4f81e838ecff6830ed33c2907fd236f38d441c206e983a2aa29fbce99295fab9"
32893299
"checksum rls-rustc 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9dba7390427aefa953608429701e3665192ca810ba8ae09301e001b7c7bed0"
32903300
"checksum rls-span 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5d7c7046dc6a92f2ae02ed302746db4382e75131b9ce20ce967259f6b5867a6a"
32913301
"checksum rls-vfs 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "ecbc8541b4c341d6271eae10f869dd9d36db871afe184f5b6f9bffbd6ed0373f"

src/librustc_save_analysis/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ rustc_target = { path = "../librustc_target" }
1616
rustc_typeck = { path = "../librustc_typeck" }
1717
syntax = { path = "../libsyntax" }
1818
syntax_pos = { path = "../libsyntax_pos" }
19-
rls-data = "0.16"
19+
rls-data = "0.18"
2020
rls-span = "0.4"
2121
# FIXME(#40527) should move rustc serialize out of tree
2222
rustc-serialize = "0.3"

0 commit comments

Comments
 (0)