Skip to content

Commit 5d076b2

Browse files
committed
---
yaml --- r: 273129 b: refs/heads/beta c: f665c39 h: refs/heads/master i: 273127: 9653561
1 parent b65c718 commit 5d076b2

File tree

7 files changed

+20
-1
lines changed

7 files changed

+20
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ refs/tags/0.9: 36870b185fc5f5486636d4515f0e22677493f225
2323
refs/tags/0.10: ac33f2b15782272ae348dbd7b14b8257b2148b5a
2424
refs/tags/0.11.0: e1247cb1d0d681be034adb4b558b5a0c0d5720f9
2525
refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
26-
refs/heads/beta: 08c448a7d3cf4ed06cf731a3458a64b97b2a6d9b
26+
refs/heads/beta: f665c399a013ce27991fafb2203a5420e75f9cfc
2727
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
2828
refs/heads/tmp: e06d2ad9fcd5027bcaac5b08fc9aa39a49d0ecd3
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f

branches/beta/src/librustc/Cargo.toml

Lines changed: 1 addition & 0 deletions
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" }
Lines changed: 14 additions & 0 deletions
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" }

branches/beta/src/librustc_metadata/Cargo.toml

Lines changed: 1 addition & 0 deletions
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" }

branches/beta/src/librustc_mir/Cargo.toml

Lines changed: 1 addition & 0 deletions
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" }

branches/beta/src/librustc_trans/Cargo.toml

Lines changed: 1 addition & 0 deletions
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" }

branches/beta/src/librustc_typeck/Cargo.toml

Lines changed: 1 addition & 0 deletions
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)