Skip to content

Commit f665c39

Browse files
committedMar 14, 2016
rustbuild
1 parent 08c448a commit f665c39

File tree

6 files changed

+19
-0
lines changed

6 files changed

+19
-0
lines changed
 

‎src/librustc/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ log = { path = "../liblog" }
1818
rbml = { path = "../librbml" }
1919
rustc_back = { path = "../librustc_back" }
2020
rustc_bitflags = { path = "../librustc_bitflags" }
21+
rustc_const_eval = { path = "../librustc_const_eval" }
2122
rustc_data_structures = { path = "../librustc_data_structures" }
2223
rustc_front = { path = "../librustc_front" }
2324
rustc_llvm = { path = "../librustc_llvm" }

‎src/librustc_const_eval/Cargo.toml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[package]
2+
authors = ["The Rust Project Developers"]
3+
name = "rustc_const_eval"
4+
version = "0.0.0"
5+
6+
[lib]
7+
name = "rustc_const_eval"
8+
path = "lib.rs"
9+
crate-type = ["dylib"]
10+
11+
[dependencies]
12+
log = { path = "../liblog" }
13+
serialize = { path = "../libserialize" }
14+
syntax = { path = "../libsyntax" }

‎src/librustc_metadata/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ rbml = { path = "../librbml" }
1515
rustc = { path = "../librustc" }
1616
rustc_back = { path = "../librustc_back" }
1717
rustc_bitflags = { path = "../librustc_bitflags" }
18+
rustc_const_eval = { path = "../librustc_const_eval" }
1819
rustc_front = { path = "../librustc_front" }
1920
rustc_llvm = { path = "../librustc_llvm" }
2021
serialize = { path = "../libserialize" }

‎src/librustc_mir/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ graphviz = { path = "../libgraphviz" }
1313
log = { path = "../liblog" }
1414
rustc = { path = "../librustc" }
1515
rustc_back = { path = "../librustc_back" }
16+
rustc_const_eval = { path = "../librustc_const_eval" }
1617
rustc_data_structures = { path = "../librustc_data_structures" }
1718
rustc_front = { path = "../librustc_front" }
1819
syntax = { path = "../libsyntax" }

‎src/librustc_trans/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ graphviz = { path = "../libgraphviz" }
1616
log = { path = "../liblog" }
1717
rustc = { path = "../librustc" }
1818
rustc_back = { path = "../librustc_back" }
19+
rustc_const_eval = { path = "../librustc_const_eval" }
1920
rustc_data_structures = { path = "../librustc_data_structures" }
2021
rustc_front = { path = "../librustc_front" }
2122
rustc_llvm = { path = "../librustc_llvm" }

‎src/librustc_typeck/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,6 @@ arena = { path = "../libarena" }
1515
fmt_macros = { path = "../libfmt_macros" }
1616
rustc = { path = "../librustc" }
1717
rustc_back = { path = "../librustc_back" }
18+
rustc_const_eval = { path = "../librustc_const_eval" }
1819
rustc_front = { path = "../librustc_front" }
1920
rustc_platform_intrinsics = { path = "../librustc_platform_intrinsics" }

0 commit comments

Comments
 (0)
Please sign in to comment.