2148bdfcc7
This commit blanket renames the `rustc_macro` infrastructure to `proc_macro`, which reflects the general consensus of #35900. A follow up PR to Cargo will be required to purge the `rustc-macro` name as well.
25 lines
733 B
TOML
25 lines
733 B
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
name = "rustc_metadata"
|
|
version = "0.0.0"
|
|
|
|
[lib]
|
|
name = "rustc_metadata"
|
|
path = "lib.rs"
|
|
crate-type = ["dylib"]
|
|
|
|
[dependencies]
|
|
flate = { path = "../libflate" }
|
|
log = { path = "../liblog" }
|
|
proc_macro = { path = "../libproc_macro" }
|
|
rustc = { path = "../librustc" }
|
|
rustc_back = { path = "../librustc_back" }
|
|
rustc_const_math = { path = "../librustc_const_math" }
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
|
rustc_errors = { path = "../librustc_errors" }
|
|
rustc_llvm = { path = "../librustc_llvm" }
|
|
serialize = { path = "../libserialize" }
|
|
syntax = { path = "../libsyntax" }
|
|
syntax_ext = { path = "../libsyntax_ext" }
|
|
syntax_pos = { path = "../libsyntax_pos" }
|