Skip to content

Commit 542ba8c

Browse files
committed
Fix Cargo.tomls
1 parent 9bb3ea0 commit 542ba8c

File tree

8 files changed

+11
-3
lines changed

8 files changed

+11
-3
lines changed

src/librustc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ rustc_errors = { path = "../librustc_errors" }
2323
rustc_llvm = { path = "../librustc_llvm" }
2424
serialize = { path = "../libserialize" }
2525
syntax = { path = "../libsyntax" }
26-
syntax_pos = { path "../libsyntax_pos" }
26+
syntax_pos = { path = "../libsyntax_pos" }

src/librustc_borrowck/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ graphviz = { path = "../libgraphviz" }
1717
rustc = { path = "../librustc" }
1818
rustc_data_structures = { path = "../librustc_data_structures" }
1919
rustc_mir = { path = "../librustc_mir" }
20+
rustc_errors = { path = "../librustc_errors" }

src/librustc_lint/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ rustc = { path = "../librustc" }
1515
rustc_back = { path = "../librustc_back" }
1616
rustc_const_eval = { path = "../librustc_const_eval" }
1717
syntax = { path = "../libsyntax" }
18+
syntax_pos = { path = "../libsyntax_pos" }

src/librustc_mir/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ rustc_const_math = { path = "../librustc_const_math" }
1818
rustc_data_structures = { path = "../librustc_data_structures" }
1919
rustc_bitflags = { path = "../librustc_bitflags" }
2020
syntax = { path = "../libsyntax" }
21+
syntax_pos = { path = "../libsyntax_pos" }

src/librustc_plugin/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ rustc_back = { path = "../librustc_back" }
1515
rustc_bitflags = { path = "../librustc_bitflags" }
1616
rustc_metadata = { path = "../librustc_metadata" }
1717
syntax = { path = "../libsyntax" }
18-
syntax_pos = { path = "../libsyntax_pos" }
18+
syntax_pos = { path = "../libsyntax_pos" }
19+
rustc_errors = { path = "../librustc_errors" }

src/librustc_privacy/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ crate-type = ["dylib"]
1111
[dependencies]
1212
rustc = { path = "../librustc" }
1313
syntax = { path = "../libsyntax" }
14+
syntax_pos = { path = "../libsyntax_pos" }

src/librustc_typeck/Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,5 @@ rustc_back = { path = "../librustc_back" }
1919
rustc_const_eval = { path = "../librustc_const_eval" }
2020
rustc_const_math = { path = "../librustc_const_math" }
2121
rustc_platform_intrinsics = { path = "../librustc_platform_intrinsics" }
22+
syntax_pos = { path = "../libsyntax_pos" }
23+
rustc_errors = { path = "../librustc_errors" }

src/libsyntax/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ crate-type = ["dylib"]
1212
serialize = { path = "../libserialize" }
1313
log = { path = "../liblog" }
1414
rustc_bitflags = { path = "../librustc_bitflags" }
15-
syntax_pos = { path = "../libsyntax_pos" }
15+
syntax_pos = { path = "../libsyntax_pos" }
16+
rustc_errors = { path = "../librustc_errors" }

0 commit comments

Comments
 (0)