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

Commit 6a1b5a9

Browse files
committed
Auto merge of #1388 - ehuss:update-cargo, r=Xanewok
Update cargo and clippy. Cargo had a minor api change due to rust-lang/cargo#6683. Clippy needed an update to build with latest nightly.
2 parents 178c7ad + 0e970e9 commit 6a1b5a9

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

Cargo.lock

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ rls-rustc = "0.5.0"
2828
rls-span = { version = "0.4", features = ["serialize-serde"] }
2929
rls-vfs = "0.7"
3030

31-
cargo = { git = "https://github.com/rust-lang/cargo", rev = "4e74e2fc0908524d17735c768067117d3e84ee9c" }
31+
cargo = { git = "https://github.com/rust-lang/cargo", rev = "716b02cb4c7b75ce435eb06defa25bc2d725909c" }
3232
cargo_metadata = "0.7"
33-
clippy_lints = { git = "https://github.com/rust-lang/rust-clippy", rev = "f69ec96906d300132ffd33151bf6641b950db96d", optional = true }
33+
clippy_lints = { git = "https://github.com/rust-lang/rust-clippy", rev = "caccf8bd4c3d490d6a4cf329a3411bbf68753642", optional = true }
3434
env_logger = "0.6"
3535
failure = "0.1.1"
3636
home = "0.3"

rls/src/build/cargo.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ fn run_cargo_ws(
206206

207207
let compile_opts = CompileOptions {
208208
spec,
209-
filter: CompileFilter::new(
209+
filter: CompileFilter::from_raw_arguments(
210210
opts.lib,
211211
opts.bin,
212212
opts.bins,

0 commit comments

Comments
 (0)