Skip to content

Commit b9a9c5b

Browse files
committed
Make things build again
1 parent b683de4 commit b9a9c5b

File tree

32 files changed

+125
-125
lines changed

32 files changed

+125
-125
lines changed

Cargo.lock

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

src/libfmt_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ name = "fmt_macros"
99
path = "lib.rs"
1010

1111
[dependencies]
12-
syntax_pos = { path = "../libsyntax_pos" }
12+
syntax_pos = { path = "../librustc_span", package = "rustc_span" }
1313
rustc_lexer = { path = "../librustc_lexer" }

src/librustc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ rustc_index = { path = "../librustc_index" }
3030
errors = { path = "../librustc_errors", package = "rustc_errors" }
3131
rustc_serialize = { path = "../libserialize", package = "serialize" }
3232
syntax = { path = "../libsyntax" }
33-
syntax_pos = { path = "../libsyntax_pos" }
33+
syntax_pos = { path = "../librustc_span", package = "rustc_span" }
3434
backtrace = "0.3.40"
3535
parking_lot = "0.9"
3636
byteorder = { version = "1.3" }

src/librustc_builtin_macros/Cargo.toml

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

77
[lib]
8-
name = "syntax_ext"
8+
name = "rustc_builtin_macros"
99
path = "lib.rs"
1010
doctest = false
1111

@@ -19,6 +19,6 @@ rustc_parse = { path = "../librustc_parse" }
1919
rustc_target = { path = "../librustc_target" }
2020
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
2121
syntax = { path = "../libsyntax" }
22-
syntax_expand = { path = "../libsyntax_expand" }
23-
syntax_pos = { path = "../libsyntax_pos" }
22+
syntax_expand = { path = "../librustc_expand", package = "rustc_expand" }
23+
syntax_pos = { path = "../librustc_span", package = "rustc_span" }
2424
rustc_error_codes = { path = "../librustc_error_codes" }

src/librustc_builtin_macros/deriving/generic/mod.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -412,8 +412,8 @@ impl<'a> TraitDef<'a> {
412412
_ => {
413413
// Non-ADT derive is an error, but it should have been
414414
// set earlier; see
415-
// libsyntax_expand/expand.rs:MacroExpander::fully_expand_fragment()
416-
// libsyntax_expand/base.rs:Annotatable::derive_allowed()
415+
// librustc_expand/expand.rs:MacroExpander::fully_expand_fragment()
416+
// librustc_expand/base.rs:Annotatable::derive_allowed()
417417
return;
418418
}
419419
};
@@ -487,8 +487,8 @@ impl<'a> TraitDef<'a> {
487487
_ => {
488488
// Non-Item derive is an error, but it should have been
489489
// set earlier; see
490-
// libsyntax_expand/expand.rs:MacroExpander::fully_expand_fragment()
491-
// libsyntax_expand/base.rs:Annotatable::derive_allowed()
490+
// librustc_expand/expand.rs:MacroExpander::fully_expand_fragment()
491+
// librustc_expand/base.rs:Annotatable::derive_allowed()
492492
return;
493493
}
494494
}

src/librustc_builtin_macros/deriving/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ fn inject_impl_of_structural_trait(
9292
_ => {
9393
// Non-Item derive is an error, but it should have been
9494
// set earlier; see
95-
// libsyntax_expand/expand.rs:MacroExpander::fully_expand_fragment()
96-
// libsyntax_expand/base.rs:Annotatable::derive_allowed()
95+
// librustc_expand/expand.rs:MacroExpander::fully_expand_fragment()
96+
// librustc_expand/base.rs:Annotatable::derive_allowed()
9797
return;
9898
}
9999
};

src/librustc_codegen_llvm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ rustc_session = { path = "../librustc_session" }
3030
rustc_target = { path = "../librustc_target" }
3131
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
3232
syntax = { path = "../libsyntax" }
33-
syntax_expand = { path = "../libsyntax_expand" }
34-
syntax_pos = { path = "../libsyntax_pos" }
33+
syntax_expand = { path = "../librustc_expand", package = "rustc_expand" }
34+
syntax_pos = { path = "../librustc_span", package = "rustc_span" }

src/librustc_codegen_ssa/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ tempfile = "3.1"
2121

2222
rustc_serialize = { path = "../libserialize", package = "serialize" }
2323
syntax = { path = "../libsyntax" }
24-
syntax_pos = { path = "../libsyntax_pos" }
24+
syntax_pos = { path = "../librustc_span", package = "rustc_span" }
2525
rustc = { path = "../librustc" }
2626
rustc_apfloat = { path = "../librustc_apfloat" }
2727
rustc_codegen_utils = { path = "../librustc_codegen_utils" }

src/librustc_codegen_utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ punycode = "0.4.0"
1515
rustc-demangle = "0.1.16"
1616

1717
syntax = { path = "../libsyntax" }
18-
syntax_pos = { path = "../libsyntax_pos" }
18+
syntax_pos = { path = "../librustc_span", package = "rustc_span" }
1919
rustc = { path = "../librustc" }
2020
rustc_target = { path = "../librustc_target" }
2121
rustc_data_structures = { path = "../librustc_data_structures" }

src/librustc_driver/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ rustc_interface = { path = "../librustc_interface" }
3131
rustc_serialize = { path = "../libserialize", package = "serialize" }
3232
rustc_resolve = { path = "../librustc_resolve" }
3333
syntax = { path = "../libsyntax" }
34-
syntax_pos = { path = "../libsyntax_pos" }
34+
syntax_pos = { path = "../librustc_span", package = "rustc_span" }
3535

3636
[features]
3737
llvm = ['rustc_interface/llvm']

0 commit comments

Comments
 (0)