Cargo.toml 1.1 KB
Newer Older
1 2 3 4
[package]
authors = ["The Rust Project Developers"]
name = "rustc_driver"
version = "0.0.0"
T
Taiki Endo 已提交
5
edition = "2018"
6 7 8 9 10 11 12 13

[lib]
name = "rustc_driver"
path = "lib.rs"
crate-type = ["dylib"]

[dependencies]
graphviz = { path = "../libgraphviz" }
14
lazy_static = "1.0"
15
log = "0.4"
M
Mateusz Mikuła 已提交
16
env_logger = { version = "0.7", default-features = false }
17
rustc = { path = "../librustc" }
18
rustc_target = { path = "../librustc_target" }
19
rustc_data_structures = { path = "../librustc_data_structures" }
T
Taiki Endo 已提交
20
errors = { path = "../librustc_errors", package = "rustc_errors" }
21
rustc_metadata = { path = "../librustc_metadata" }
22
rustc_mir = { path = "../librustc_mir" }
23
rustc_plugin = { path = "../librustc_plugin/deprecated" } # To get this in the sysroot
24
rustc_plugin_impl = { path = "../librustc_plugin" }
25
rustc_save_analysis = { path = "../librustc_save_analysis" }
I
Irina Popa 已提交
26
rustc_codegen_utils = { path = "../librustc_codegen_utils" }
27
rustc_interface = { path = "../librustc_interface" }
28
rustc_serialize = { path = "../libserialize", package = "serialize" }
29
syntax = { path = "../libsyntax" }
C
cgswords 已提交
30
syntax_pos = { path = "../libsyntax_pos" }