diff options
| author | bors <bors@rust-lang.org> | 2019-12-30 18:06:54 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2019-12-30 18:06:54 +0000 |
| commit | a9dd56ff9a08d74c53d5cc22d18f126a12749608 (patch) | |
| tree | 09084364375d62c90697cbe715bafa9af6407afc /src/libsyntax | |
| parent | 9d6f87184e5116cf4a96f6686eb67994f19908a5 (diff) | |
| parent | 7608f21b278d9aadcdebbb6d99760d70c52d5750 (diff) | |
| download | rust-a9dd56ff9a08d74c53d5cc22d18f126a12749608.tar.gz rust-a9dd56ff9a08d74c53d5cc22d18f126a12749608.zip | |
Auto merge of #67707 - petrochenkov:crateren, r=Centril
Rename some crates and modules in the frontend Migrate from `syntax_*` naming scheme to `rustc_*`. See https://github.com/rust-lang/rust/pull/65324#issuecomment-551103396 and several comments below. Renamed crates: `syntax_expand` -> `rustc_expand` `syntax_pos` -> `rustc_span` ([motivation](https://github.com/rust-lang/rust/pull/65324#issuecomment-552173320)) `syntax_ext` -> `rustc_builtin_macros` Also one module in resolve is renamed for consistency and to avoid tautology. r? @Centril
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/Cargo.toml b/src/libsyntax/Cargo.toml index 8a00bcbfe17..de35f1744c1 100644 --- a/src/libsyntax/Cargo.toml +++ b/src/libsyntax/Cargo.toml @@ -15,7 +15,7 @@ rustc_serialize = { path = "../libserialize", package = "serialize" } log = "0.4" scoped-tls = "1.0" lazy_static = "1.0.0" -syntax_pos = { path = "../libsyntax_pos" } +syntax_pos = { path = "../librustc_span", package = "rustc_span" } errors = { path = "../librustc_errors", package = "rustc_errors" } rustc_data_structures = { path = "../librustc_data_structures" } rustc_feature = { path = "../librustc_feature" } |
