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.
11 lines
187 B
TOML
11 lines
187 B
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
name = "proc_macro"
|
|
version = "0.0.0"
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
crate-type = ["dylib"]
|
|
|
|
[dependencies]
|
|
syntax = { path = "../libsyntax" }
|