]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_smir/Cargo.toml
Auto merge of #100539 - joboet:horizon_timeout_clock, r=thomcc
[rust.git] / compiler / rustc_smir / Cargo.toml
1 [package]
2 name = "rustc_smir"
3 version = "0.0.0"
4 edition = "2021"
5
6 [dependencies]
7 rustc_borrowck = { path = "../rustc_borrowck", optional = true }
8 rustc_driver = { path = "../rustc_driver", optional = true }
9 rustc_hir = { path = "../rustc_hir", optional = true }
10 rustc_interface = { path = "../rustc_interface", optional = true }
11 rustc_middle = { path = "../rustc_middle", optional = true }
12 rustc_mir_dataflow = { path = "../rustc_mir_dataflow", optional = true }
13 rustc_mir_transform = { path = "../rustc_mir_transform", optional = true }
14 rustc_serialize = { path = "../rustc_serialize", optional = true }
15 rustc_trait_selection = { path = "../rustc_trait_selection", optional = true }
16
17 [features]
18 default = [
19     "rustc_borrowck",
20     "rustc_driver",
21     "rustc_hir",
22     "rustc_interface",
23     "rustc_middle",
24     "rustc_mir_dataflow",
25     "rustc_mir_transform",
26     "rustc_serialize",
27     "rustc_trait_selection",
28 ]