Skip to content
This repository was archived by the owner on Dec 29, 2022. It is now read-only.

Commit 7b77c4e

Browse files
itertools = 0.9, fst = 0.4
Also includes a bump of rayon's dependencies, which allows for two dependencies to be removed from the lockfile.
1 parent 32c0fe0 commit 7b77c4e

File tree

3 files changed

+32
-49
lines changed

3 files changed

+32
-49
lines changed

Cargo.lock

Lines changed: 26 additions & 44 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ test = false
2121
path = "rls/src/main.rs"
2222

2323
[dependencies]
24-
rls-analysis = "0.18.1"
24+
# FIXME: Release rls-analysis 0.18.2 to crates.io
25+
rls-analysis = { version = "0.18.2", path = "rls-analysis" }
2526
rls-data = "0.19"
2627
# FIXME: Release rls-rustc 0.6.0 to crates.io
2728
rls-rustc = { version = "0.6.0", path = "rls-rustc" }
@@ -36,7 +37,7 @@ cargo_metadata = "0.8"
3637
clippy_lints = { git = "https://github.com/rust-lang/rust-clippy", rev = "7ea7cd165ad6705603852771bf82cc2fd6560db5", optional = true }
3738
env_logger = "0.7"
3839
home = "0.5.1"
39-
itertools = "0.8"
40+
itertools = "0.9"
4041
jsonrpc-core = "17"
4142
lsp-types = { version = "0.60", features = ["proposed"] }
4243
lazy_static = "1"

rls-analysis/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rls-analysis"
3-
version = "0.18.1"
3+
version = "0.18.2"
44
edition = "2018"
55
authors = ["Nick Cameron <[email protected]>"]
66
description = "Library for processing rustc's save-analysis data for the RLS"
@@ -21,8 +21,8 @@ log = "0.4"
2121
rls-data = "= 0.19"
2222
rls-span = "0.5.2"
2323
derive-new = "0.5"
24-
fst = { version = "0.3", default-features = false }
25-
itertools = "0.8"
24+
fst = { version = "0.4", default-features = false }
25+
itertools = "0.9"
2626
json = "0.12"
2727
serde = "1.0"
2828
serde_json = "1.0"

0 commit comments

Comments
 (0)