]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_session/Cargo.toml
Merge commit '7d53619064ab7045c383644cb445052d2a3d46db' into sync_cg_clif-2023-02-09
[rust.git] / compiler / rustc_session / Cargo.toml
1 [package]
2 name = "rustc_session"
3 version = "0.0.0"
4 edition = "2021"
5
6 [dependencies]
7 getopts = "0.2"
8 rustc_macros = { path = "../rustc_macros" }
9 tracing = "0.1"
10 rustc_errors = { path = "../rustc_errors" }
11 rustc_feature = { path = "../rustc_feature" }
12 rustc_hir = { path = "../rustc_hir" }
13 rustc_target = { path = "../rustc_target" }
14 rustc_serialize = { path = "../rustc_serialize" }
15 rustc_data_structures = { path = "../rustc_data_structures" }
16 rustc_index = { path = "../rustc_index" }
17 rustc_span = { path = "../rustc_span" }
18 rustc_fs_util = { path = "../rustc_fs_util" }
19 rustc_ast = { path = "../rustc_ast" }
20 rustc_lint_defs = { path = "../rustc_lint_defs" }
21 smallvec = "1.8.1"
22 termize = "0.1.1"
23
24 [target.'cfg(unix)'.dependencies]
25 libc = "0.2"
26
27 [target.'cfg(windows)'.dependencies]
28 winapi = { version = "0.3", features = ["libloaderapi"] }