37 lines
1.3 KiB
TOML
37 lines
1.3 KiB
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
name = "rustc_interface"
|
|
version = "0.0.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "rustc_interface"
|
|
path = "lib.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
rayon = { version = "0.3.0", package = "rustc-rayon" }
|
|
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
|
|
syntax = { path = "../libsyntax" }
|
|
syntax_ext = { path = "../libsyntax_ext" }
|
|
syntax_pos = { path = "../libsyntax_pos" }
|
|
rustc_serialize = { path = "../libserialize", package = "serialize" }
|
|
rustc = { path = "../librustc" }
|
|
rustc_incremental = { path = "../librustc_incremental" }
|
|
rustc_traits = { path = "../librustc_traits" }
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
|
rustc_codegen_ssa = { path = "../librustc_codegen_ssa" }
|
|
rustc_codegen_utils = { path = "../librustc_codegen_utils" }
|
|
rustc_metadata = { path = "../librustc_metadata" }
|
|
rustc_mir = { path = "../librustc_mir" }
|
|
rustc_passes = { path = "../librustc_passes" }
|
|
rustc_typeck = { path = "../librustc_typeck" }
|
|
rustc_lint = { path = "../librustc_lint" }
|
|
rustc_errors = { path = "../librustc_errors" }
|
|
rustc_plugin = { path = "../librustc_plugin", package = "rustc_plugin_impl" }
|
|
rustc_privacy = { path = "../librustc_privacy" }
|
|
rustc_resolve = { path = "../librustc_resolve" }
|
|
tempfile = "3.0.5"
|
|
once_cell = "1"
|