345ba505ec
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!
22 lines
605 B
TOML
22 lines
605 B
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
name = "rustc_traits"
|
|
version = "0.0.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "rustc_traits"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
bitflags = "1.0"
|
|
graphviz = { path = "../libgraphviz" }
|
|
log = { version = "0.4" }
|
|
rustc = { path = "../librustc" }
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
|
rustc_target = { path = "../librustc_target" }
|
|
syntax = { path = "../libsyntax" }
|
|
syntax_pos = { path = "../libsyntax_pos" }
|
|
chalk-engine = { version = "0.9.0", default-features=false }
|
|
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
|