2020-08-27 22:58:48 -05:00
|
|
|
[package]
|
|
|
|
name = "rustc_session"
|
|
|
|
version = "0.0.0"
|
2021-09-19 11:49:55 -05:00
|
|
|
edition = "2021"
|
2020-08-27 22:58:48 -05:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
getopts = "0.2"
|
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
|
|
|
tracing = "0.1"
|
|
|
|
rustc_errors = { path = "../rustc_errors" }
|
|
|
|
rustc_feature = { path = "../rustc_feature" }
|
2020-11-13 20:02:03 -06:00
|
|
|
rustc_hir = { path = "../rustc_hir" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_target = { path = "../rustc_target" }
|
|
|
|
rustc_serialize = { path = "../rustc_serialize" }
|
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
2022-12-07 08:31:50 -06:00
|
|
|
rustc_index = { path = "../rustc_index" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_span = { path = "../rustc_span" }
|
|
|
|
rustc_fs_util = { path = "../rustc_fs_util" }
|
|
|
|
rustc_ast = { path = "../rustc_ast" }
|
2020-08-13 14:41:52 -05:00
|
|
|
rustc_lint_defs = { path = "../rustc_lint_defs" }
|
2022-10-28 02:20:51 -05:00
|
|
|
smallvec = "1.8.1"
|
2022-11-25 19:14:25 -06:00
|
|
|
termize = "0.1.1"
|
2022-10-28 02:20:51 -05:00
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
libc = "0.2"
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winapi = { version = "0.3", features = ["libloaderapi"] }
|