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

Rustup https://github.com./rust-lang/rust/pull/67786 #1610

Merged
merged 2 commits into from
Jan 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ rls-ipc = { version = "0.1.0", path = "rls-ipc", optional = true }

cargo = { git = "https://github.com./rust-lang/cargo", rev = "86134e7666a088682f20b76278c3ee096a315218" }
cargo_metadata = "0.8"
clippy_lints = { git = "https://github.com./rust-lang/rust-clippy", rev = "d9e38f57c125c5ac50397ec8a006fe49f17cd96c", optional = true }
clippy_lints = { git = "https://github.com./rust-lang/rust-clippy", rev = "05b46034ea734f2b4436b700452771652ecc0074", optional = true }
env_logger = "0.7"
failure = "0.1.1"
futures = { version = "0.1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion rls-rustc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env_logger = "0.7"
log = "0.4"
failure = "0.1"
rand = "0.7"
clippy_lints = { git = "https://github.com./rust-lang/rust-clippy", rev = "d9e38f57c125c5ac50397ec8a006fe49f17cd96c", optional = true }
clippy_lints = { git = "https://github.com./rust-lang/rust-clippy", rev = "05b46034ea734f2b4436b700452771652ecc0074", optional = true }
tokio = { version = "0.1", optional = true }
futures = { version = "0.1", optional = true }
serde = { version = "1", features = ["derive"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion rls-rustc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ extern crate rustc;
extern crate rustc_driver;
extern crate rustc_interface;
extern crate rustc_save_analysis;
extern crate syntax;
extern crate rustc_span;

use rustc::session::config::ErrorOutputType;
use rustc::session::early_error;
Expand Down
6 changes: 3 additions & 3 deletions rls/src/build/rustc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ extern crate rustc_resolve;
#[allow(unused_extern_crates)]
extern crate rustc_save_analysis;
#[allow(unused_extern_crates)]
extern crate syntax;
extern crate rustc_span;

use std::collections::{HashMap, HashSet};
use std::env;
Expand All @@ -41,8 +41,8 @@ use self::rustc_interface::interface;
use self::rustc_interface::Queries;
use self::rustc_save_analysis as save;
use self::rustc_save_analysis::CallbackHandler;
use self::syntax::edition::Edition as RustcEdition;
use self::syntax::source_map::{FileLoader, RealFileLoader};
use self::rustc_span::edition::Edition as RustcEdition;
use self::rustc_span::source_map::{FileLoader, RealFileLoader};
use crate::build::environment::{Environment, EnvironmentLockFacade};
use crate::build::plan::{Crate, Edition};
use crate::build::{BufWriter, BuildResult};
Expand Down