]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_session/Cargo.toml
New upstream version 1.68.2+dfsg1
[rustc.git] / compiler / rustc_session / Cargo.toml
CommitLineData
1b1a35ee 1[package]
1b1a35ee
XL
2name = "rustc_session"
3version = "0.0.0"
c295e0f8 4edition = "2021"
1b1a35ee
XL
5
6[dependencies]
1b1a35ee
XL
7getopts = "0.2"
8rustc_macros = { path = "../rustc_macros" }
9tracing = "0.1"
10rustc_errors = { path = "../rustc_errors" }
11rustc_feature = { path = "../rustc_feature" }
c295e0f8 12rustc_hir = { path = "../rustc_hir" }
1b1a35ee
XL
13rustc_target = { path = "../rustc_target" }
14rustc_serialize = { path = "../rustc_serialize" }
15rustc_data_structures = { path = "../rustc_data_structures" }
f25598a0 16rustc_index = { path = "../rustc_index" }
1b1a35ee
XL
17rustc_span = { path = "../rustc_span" }
18rustc_fs_util = { path = "../rustc_fs_util" }
1b1a35ee 19rustc_ast = { path = "../rustc_ast" }
29967ef6 20rustc_lint_defs = { path = "../rustc_lint_defs" }
487cf647
FG
21smallvec = "1.8.1"
22termize = "0.1.1"
23
24[target.'cfg(unix)'.dependencies]
25libc = "0.2"
26
27[target.'cfg(windows)'.dependencies]
28winapi = { version = "0.3", features = ["libloaderapi"] }