]> git.lizzy.rs Git - rust.git/commitdiff
rustbuild
authorOliver Schneider <git-spam-no-reply9815368754983@oli-obk.de>
Mon, 14 Mar 2016 08:29:18 +0000 (09:29 +0100)
committerOliver Schneider <git-spam-no-reply9815368754983@oli-obk.de>
Mon, 14 Mar 2016 08:29:18 +0000 (09:29 +0100)
src/librustc/Cargo.toml
src/librustc_const_eval/Cargo.toml [new file with mode: 0644]
src/librustc_metadata/Cargo.toml
src/librustc_mir/Cargo.toml
src/librustc_trans/Cargo.toml
src/librustc_typeck/Cargo.toml

index e65b4355e9d371c934edcaf2c1a39a9c95d8cd5e..1f000c2af68b880c8310942607cec66b1f07e34d 100644 (file)
@@ -18,6 +18,7 @@ log = { path = "../liblog" }
 rbml = { path = "../librbml" }
 rustc_back = { path = "../librustc_back" }
 rustc_bitflags = { path = "../librustc_bitflags" }
+rustc_const_eval = { path = "../librustc_const_eval" }
 rustc_data_structures = { path = "../librustc_data_structures" }
 rustc_front = { path = "../librustc_front" }
 rustc_llvm = { path = "../librustc_llvm" }
diff --git a/src/librustc_const_eval/Cargo.toml b/src/librustc_const_eval/Cargo.toml
new file mode 100644 (file)
index 0000000..f885e9a
--- /dev/null
@@ -0,0 +1,14 @@
+[package]
+authors = ["The Rust Project Developers"]
+name = "rustc_const_eval"
+version = "0.0.0"
+
+[lib]
+name = "rustc_const_eval"
+path = "lib.rs"
+crate-type = ["dylib"]
+
+[dependencies]
+log = { path = "../liblog" }
+serialize = { path = "../libserialize" }
+syntax = { path = "../libsyntax" }
index d6bb4b157a6a3d2471c531c50d4e0ab8094c6190..e8b5a7efdd96bf68af35bf2402c04e7abcbf47ff 100644 (file)
@@ -15,6 +15,7 @@ rbml = { path = "../librbml" }
 rustc = { path = "../librustc" }
 rustc_back = { path = "../librustc_back" }
 rustc_bitflags = { path = "../librustc_bitflags" }
+rustc_const_eval = { path = "../librustc_const_eval" }
 rustc_front = { path = "../librustc_front" }
 rustc_llvm = { path = "../librustc_llvm" }
 serialize = { path = "../libserialize" }
index 93817ab0db61b782f7d0512e12430e8a69c277d6..99237c9fa5f47bc1c4feb4ecb3c8cd20abe4229a 100644 (file)
@@ -13,6 +13,7 @@ graphviz = { path = "../libgraphviz" }
 log = { path = "../liblog" }
 rustc = { path = "../librustc" }
 rustc_back = { path = "../librustc_back" }
+rustc_const_eval = { path = "../librustc_const_eval" }
 rustc_data_structures = { path = "../librustc_data_structures" }
 rustc_front = { path = "../librustc_front" }
 syntax = { path = "../libsyntax" }
index 24320c4d563bc259ce81295b53998fc04b61b91a..b7faafeba9aa1b9fd66a940f1af24a48a60a3bcb 100644 (file)
@@ -16,6 +16,7 @@ graphviz = { path = "../libgraphviz" }
 log = { path = "../liblog" }
 rustc = { path = "../librustc" }
 rustc_back = { path = "../librustc_back" }
+rustc_const_eval = { path = "../librustc_const_eval" }
 rustc_data_structures = { path = "../librustc_data_structures" }
 rustc_front = { path = "../librustc_front" }
 rustc_llvm = { path = "../librustc_llvm" }
index fd33e9da1f93786acdce840e06917d915448dec4..1c907972863b6422878adaad1759ea8aaac0d195 100644 (file)
@@ -15,5 +15,6 @@ arena = { path = "../libarena" }
 fmt_macros = { path = "../libfmt_macros" }
 rustc = { path = "../librustc" }
 rustc_back = { path = "../librustc_back" }
+rustc_const_eval = { path = "../librustc_const_eval" }
 rustc_front = { path = "../librustc_front" }
 rustc_platform_intrinsics = { path = "../librustc_platform_intrinsics" }