Update Cargo.lock dependencies

Run `cargo update` and let's see how far we can get!
This commit is contained in:
Alex Crichton
2018-07-02 09:33:16 -07:00
parent ef41cf0288
commit d825115978
3 changed files with 627 additions and 620 deletions

View File

@@ -337,13 +337,14 @@ pub enum Mode {
/// Compile a tool which uses all libraries we compile (up to rustc).
/// Doesn't use the stage0 compiler libraries like "other", and includes
/// tools like rustdoc, cargo, rls, etc.
ToolStd,
ToolRustc,
}
impl Mode {
pub fn is_tool(&self) -> bool {
match self {
Mode::ToolBootstrap | Mode::ToolRustc => true,
Mode::ToolBootstrap | Mode::ToolRustc | Mode::ToolStd => true,
_ => false
}
}
@@ -554,6 +555,7 @@ impl Build {
Mode::Codegen => "-rustc",
Mode::Rustc => "-rustc",
Mode::ToolBootstrap => "-bootstrap-tools",
Mode::ToolStd => "-tools",
Mode::ToolRustc => "-tools",
};
self.out.join(&*compiler.host)