about summary refs log tree commit diff
path: root/src/librustc_codegen_utils
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2019-12-30 18:06:54 +0000
committerbors <bors@rust-lang.org>2019-12-30 18:06:54 +0000
commita9dd56ff9a08d74c53d5cc22d18f126a12749608 (patch)
tree09084364375d62c90697cbe715bafa9af6407afc /src/librustc_codegen_utils
parent9d6f87184e5116cf4a96f6686eb67994f19908a5 (diff)
parent7608f21b278d9aadcdebbb6d99760d70c52d5750 (diff)
downloadrust-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_codegen_utils')
-rw-r--r--src/librustc_codegen_utils/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_codegen_utils/Cargo.toml b/src/librustc_codegen_utils/Cargo.toml
index c8c219d039a..09c6dfe5dc0 100644
--- a/src/librustc_codegen_utils/Cargo.toml
+++ b/src/librustc_codegen_utils/Cargo.toml
@@ -15,7 +15,7 @@ punycode = "0.4.0"
 rustc-demangle = "0.1.16"
 
 syntax = { path = "../libsyntax" }
-syntax_pos = { path = "../libsyntax_pos" }
+syntax_pos = { path = "../librustc_span", package = "rustc_span" }
 rustc = { path = "../librustc" }
 rustc_target = { path = "../librustc_target" }
 rustc_data_structures = { path = "../librustc_data_structures" }