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/librustc_errors | |
| 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/librustc_errors')
| -rw-r--r-- | src/librustc_errors/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_errors/Cargo.toml b/src/librustc_errors/Cargo.toml index 1541845bb55..8a21150570a 100644 --- a/src/librustc_errors/Cargo.toml +++ b/src/librustc_errors/Cargo.toml @@ -12,7 +12,7 @@ doctest = false [dependencies] log = "0.4" rustc_serialize = { path = "../libserialize", package = "serialize" } -syntax_pos = { path = "../libsyntax_pos" } +syntax_pos = { path = "../librustc_span", package = "rustc_span" } rustc_data_structures = { path = "../librustc_data_structures" } unicode-width = "0.1.4" atty = "0.2" |
