Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 11d9514

Browse files
committed
Make things build again
1 parent 47197d6 commit 11d9514

File tree

33 files changed

+106
-106
lines changed

33 files changed

+106
-106
lines changed

Cargo.lock

Lines changed: 62 additions & 62 deletions
Large diffs are not rendered by default.

src/librustc_arena/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
authors = ["The Rust Project Developers"]
3-
name = "arena"
3+
name = "rustc_arena"
44
version = "0.0.0"
55
edition = "2018"
66

77
[lib]
8-
name = "arena"
8+
name = "rustc_arena"
99
path = "lib.rs"
1010

1111
[dependencies]

src/librustc_ast/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ path = "lib.rs"
1010
doctest = false
1111

1212
[dependencies]
13-
rustc_serialize = { path = "../libserialize", package = "serialize" }
13+
rustc_serialize = { path = "../librustc_serialize" }
1414
log = "0.4"
1515
scoped-tls = "1.0"
1616
rustc_span = { path = "../librustc_span" }

src/librustc_ast_lowering/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ path = "lib.rs"
1010
doctest = false
1111

1212
[dependencies]
13-
arena = { path = "../libarena" }
13+
arena = { path = "../librustc_arena", package = "rustc_arena" }
1414
log = { version = "0.4", features = ["release_max_level_info", "std"] }
1515
rustc_ast_pretty = { path = "../librustc_ast_pretty" }
1616
rustc_hir = { path = "../librustc_hir" }

src/librustc_attr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ doctest = false
1212

1313
[dependencies]
1414
rustc_ast_pretty = { path = "../librustc_ast_pretty" }
15-
rustc_serialize = { path = "../libserialize", package = "serialize" }
15+
rustc_serialize = { path = "../librustc_serialize" }
1616
rustc_errors = { path = "../librustc_errors" }
1717
rustc_span = { path = "../librustc_span" }
1818
rustc_data_structures = { path = "../librustc_data_structures" }

src/librustc_builtin_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ path = "lib.rs"
1010
doctest = false
1111

1212
[dependencies]
13-
fmt_macros = { path = "../libfmt_macros" }
13+
fmt_macros = { path = "../librustc_parse_format", package = "rustc_parse_format" }
1414
log = "0.4"
1515
rustc_ast_pretty = { path = "../librustc_ast_pretty" }
1616
rustc_attr = { path = "../librustc_attr" }

src/librustc_codegen_llvm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ rustc_incremental = { path = "../librustc_incremental" }
2929
rustc_index = { path = "../librustc_index" }
3030
rustc_llvm = { path = "../librustc_llvm" }
3131
rustc_session = { path = "../librustc_session" }
32-
rustc_serialize = { path = "../libserialize", package = "serialize" }
32+
rustc_serialize = { path = "../librustc_serialize" }
3333
rustc_target = { path = "../librustc_target" }
3434
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
3535
rustc_ast = { path = "../librustc_ast" }

src/librustc_codegen_ssa/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ libc = "0.2.50"
1919
jobserver = "0.1.11"
2020
tempfile = "3.1"
2121

22-
rustc_serialize = { path = "../libserialize", package = "serialize" }
22+
rustc_serialize = { path = "../librustc_serialize" }
2323
rustc_ast = { path = "../librustc_ast" }
2424
rustc_span = { path = "../librustc_span" }
2525
rustc_middle = { path = "../librustc_middle" }

src/librustc_data_structures/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ log = "0.4"
1616
jobserver_crate = { version = "0.1.13", package = "jobserver" }
1717
lazy_static = "1"
1818
once_cell = { version = "1", features = ["parking_lot"] }
19-
rustc_serialize = { path = "../libserialize", package = "serialize" }
20-
graphviz = { path = "../libgraphviz" }
19+
rustc_serialize = { path = "../librustc_serialize" }
20+
graphviz = { path = "../librustc_graphviz", package = "rustc_graphviz" }
2121
cfg-if = "0.1.2"
2222
crossbeam-utils = { version = "0.7", features = ["nightly"] }
2323
stable_deref_trait = "1.0.0"

src/librustc_driver/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ rustc_codegen_ssa = { path = "../librustc_codegen_ssa" }
3232
rustc_session = { path = "../librustc_session" }
3333
rustc_error_codes = { path = "../librustc_error_codes" }
3434
rustc_interface = { path = "../librustc_interface" }
35-
rustc_serialize = { path = "../libserialize", package = "serialize" }
35+
rustc_serialize = { path = "../librustc_serialize" }
3636
rustc_ast = { path = "../librustc_ast" }
3737
rustc_span = { path = "../librustc_span" }
3838

0 commit comments

Comments
 (0)