From 782c0cf4a2fb57492012f6093ad7b70be72f654d Mon Sep 17 00:00:00 2001 From: "Felix S. Klock II" Date: Tue, 22 Mar 2016 18:09:57 +0100 Subject: [PATCH] Add rustbuild dependency from `rustc_borrowck` upon `rustc_mir` crate. --- src/librustc_borrowck/Cargo.toml | 1 + src/rustc/Cargo.lock | 1 + 2 files changed, 2 insertions(+) diff --git a/src/librustc_borrowck/Cargo.toml b/src/librustc_borrowck/Cargo.toml index f78f6fb86ae..fdb97bd8d2d 100644 --- a/src/librustc_borrowck/Cargo.toml +++ b/src/librustc_borrowck/Cargo.toml @@ -14,3 +14,4 @@ syntax = { path = "../libsyntax" } graphviz = { path = "../libgraphviz" } rustc = { path = "../librustc" } rustc_front = { path = "../librustc_front" } +rustc_mir = { path = "../librustc_mir" } diff --git a/src/rustc/Cargo.lock b/src/rustc/Cargo.lock index 03e7aaca0f7..9ef0b400022 100644 --- a/src/rustc/Cargo.lock +++ b/src/rustc/Cargo.lock @@ -109,6 +109,7 @@ dependencies = [ "log 0.0.0", "rustc 0.0.0", "rustc_front 0.0.0", + "rustc_mir 0.0.0", "syntax 0.0.0", ]