2020-08-28 03:58:48 +00:00
|
|
|
[package]
|
|
|
|
name = "rustc_session"
|
|
|
|
version = "0.0.0"
|
2021-09-19 16:49:55 +00:00
|
|
|
edition = "2021"
|
2020-08-28 03:58:48 +00: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-14 02:02:03 +00:00
|
|
|
rustc_hir = { path = "../rustc_hir" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_target = { path = "../rustc_target" }
|
|
|
|
rustc_serialize = { path = "../rustc_serialize" }
|
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
2022-12-07 14:31:50 +00:00
|
|
|
rustc_index = { path = "../rustc_index" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_span = { path = "../rustc_span" }
|
|
|
|
rustc_fs_util = { path = "../rustc_fs_util" }
|
|
|
|
rustc_ast = { path = "../rustc_ast" }
|
2020-08-13 19:41:52 +00:00
|
|
|
rustc_lint_defs = { path = "../rustc_lint_defs" }
|
2022-10-28 07:20:51 +00:00
|
|
|
smallvec = "1.8.1"
|
2022-11-26 01:14:25 +00:00
|
|
|
termize = "0.1.1"
|
2022-10-28 07:20:51 +00:00
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
libc = "0.2"
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winapi = { version = "0.3", features = ["libloaderapi"] }
|