File tree Expand file tree Collapse file tree 7 files changed +20
-1
lines changed Expand file tree Collapse file tree 7 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ refs/tags/0.9: 36870b185fc5f5486636d4515f0e22677493f225
23
23
refs/tags/0.10: ac33f2b15782272ae348dbd7b14b8257b2148b5a
24
24
refs/tags/0.11.0: e1247cb1d0d681be034adb4b558b5a0c0d5720f9
25
25
refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
26
- refs/heads/beta: 08c448a7d3cf4ed06cf731a3458a64b97b2a6d9b
26
+ refs/heads/beta: f665c399a013ce27991fafb2203a5420e75f9cfc
27
27
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
28
28
refs/heads/tmp: e06d2ad9fcd5027bcaac5b08fc9aa39a49d0ecd3
29
29
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ log = { path = "../liblog" }
18
18
rbml = { path = " ../librbml" }
19
19
rustc_back = { path = " ../librustc_back" }
20
20
rustc_bitflags = { path = " ../librustc_bitflags" }
21
+ rustc_const_eval = { path = " ../librustc_const_eval" }
21
22
rustc_data_structures = { path = " ../librustc_data_structures" }
22
23
rustc_front = { path = " ../librustc_front" }
23
24
rustc_llvm = { path = " ../librustc_llvm" }
Original file line number Diff line number Diff line change
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" }
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ rbml = { path = "../librbml" }
15
15
rustc = { path = " ../librustc" }
16
16
rustc_back = { path = " ../librustc_back" }
17
17
rustc_bitflags = { path = " ../librustc_bitflags" }
18
+ rustc_const_eval = { path = " ../librustc_const_eval" }
18
19
rustc_front = { path = " ../librustc_front" }
19
20
rustc_llvm = { path = " ../librustc_llvm" }
20
21
serialize = { path = " ../libserialize" }
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ graphviz = { path = "../libgraphviz" }
13
13
log = { path = " ../liblog" }
14
14
rustc = { path = " ../librustc" }
15
15
rustc_back = { path = " ../librustc_back" }
16
+ rustc_const_eval = { path = " ../librustc_const_eval" }
16
17
rustc_data_structures = { path = " ../librustc_data_structures" }
17
18
rustc_front = { path = " ../librustc_front" }
18
19
syntax = { path = " ../libsyntax" }
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ graphviz = { path = "../libgraphviz" }
16
16
log = { path = " ../liblog" }
17
17
rustc = { path = " ../librustc" }
18
18
rustc_back = { path = " ../librustc_back" }
19
+ rustc_const_eval = { path = " ../librustc_const_eval" }
19
20
rustc_data_structures = { path = " ../librustc_data_structures" }
20
21
rustc_front = { path = " ../librustc_front" }
21
22
rustc_llvm = { path = " ../librustc_llvm" }
Original file line number Diff line number Diff line change @@ -15,5 +15,6 @@ arena = { path = "../libarena" }
15
15
fmt_macros = { path = " ../libfmt_macros" }
16
16
rustc = { path = " ../librustc" }
17
17
rustc_back = { path = " ../librustc_back" }
18
+ rustc_const_eval = { path = " ../librustc_const_eval" }
18
19
rustc_front = { path = " ../librustc_front" }
19
20
rustc_platform_intrinsics = { path = " ../librustc_platform_intrinsics" }
You can’t perform that action at this time.
0 commit comments