Skip to content

Commit 6054a30

Browse files
committed
Make it build again
1 parent e94d3b7 commit 6054a30

File tree

56 files changed

+101
-101
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+101
-101
lines changed

Cargo.lock

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

src/bootstrap/dist.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -996,7 +996,7 @@ impl Step for Src {
996996
"src/tools/rustc-std-workspace-alloc",
997997
"src/tools/rustc-std-workspace-std",
998998
"src/librustc",
999-
"src/libsyntax",
999+
"src/librustc_ast",
10001000
];
10011001

10021002
copy_src_dirs(builder, &std_src_dirs[..], &[], &dst_src);

src/doc/rustc-ux-guidelines.md

Lines changed: 1 addition & 1 deletion

src/doc/unstable-book/src/language-features/plugin.md

Lines changed: 1 addition & 1 deletion

src/librustc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ rustc_data_structures = { path = "../librustc_data_structures" }
2828
rustc_errors = { path = "../librustc_errors" }
2929
rustc_index = { path = "../librustc_index" }
3030
rustc_serialize = { path = "../libserialize", package = "serialize" }
31-
syntax = { path = "../libsyntax" }
31+
syntax = { path = "../librustc_ast", package = "rustc_ast" }
3232
rustc_span = { path = "../librustc_span" }
3333
backtrace = "0.3.40"
3434
parking_lot = "0.9"

src/librustc/ich/impls_syntax.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! This module contains `HashStable` implementations for various data types
2-
//! from libsyntax in no particular order.
2+
//! from librustc_ast in no particular order.
33
44
use crate::ich::StableHashingContext;
55

src/librustc/ty/context.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1720,7 +1720,7 @@ pub mod tls {
17201720
set_tlv(context as *const _ as usize, || f(&context))
17211721
}
17221722

1723-
/// Enters `GlobalCtxt` by setting up libsyntax callbacks and
1723+
/// Enters `GlobalCtxt` by setting up librustc_ast callbacks and
17241724
/// creating a initial `TyCtxt` and `ImplicitCtxt`.
17251725
/// This happens once per rustc session and `TyCtxt`s only exists
17261726
/// inside the `f` function.

src/librustc/ty/sty.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ impl BoundRegion {
118118
}
119119

120120
/// N.B., if you change this, you'll probably want to change the corresponding
121-
/// AST structure in `libsyntax/ast.rs` as well.
121+
/// AST structure in `librustc_ast/ast.rs` as well.
122122
#[derive(
123123
Clone,
124124
PartialEq,

src/librustc_ast/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 = "syntax"
3+
name = "rustc_ast"
44
version = "0.0.0"
55
edition = "2018"
66

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

src/librustc_ast_lowering/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ rustc_index = { path = "../librustc_index" }
2020
rustc_span = { path = "../librustc_span" }
2121
rustc_errors = { path = "../librustc_errors" }
2222
rustc_session = { path = "../librustc_session" }
23-
syntax = { path = "../libsyntax" }
23+
syntax = { path = "../librustc_ast", package = "rustc_ast" }
2424
smallvec = { version = "1.0", features = ["union", "may_dangle"] }

0 commit comments

Comments
 (0)