Now that procedural macros no longer link transitively to libsyntax, this shouldn't be needed any more! This commit is an experiment in removing all dynamic libraries from rustc except for librustc_driver itself. Let's see how far we can get with that!
23 lines
544 B
TOML
23 lines
544 B
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
name = "rustc_codegen_utils"
|
|
version = "0.0.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "rustc_codegen_utils"
|
|
path = "lib.rs"
|
|
test = false
|
|
|
|
[dependencies]
|
|
flate2 = "1.0"
|
|
log = "0.4"
|
|
punycode = "0.4.0"
|
|
rustc-demangle = "0.1.15"
|
|
|
|
syntax = { path = "../libsyntax" }
|
|
syntax_pos = { path = "../libsyntax_pos" }
|
|
rustc = { path = "../librustc" }
|
|
rustc_target = { path = "../librustc_target" }
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
|
rustc_metadata = { path = "../librustc_metadata" }
|