2022-06-02 10:07:25 +00:00
|
|
|
[package]
|
|
|
|
name = "rustc_smir"
|
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
rustc_borrowck = { path = "../rustc_borrowck", optional = true }
|
2022-06-02 10:15:07 +00:00
|
|
|
rustc_driver = { path = "../rustc_driver", optional = true }
|
|
|
|
rustc_hir = { path = "../rustc_hir", optional = true }
|
2022-06-02 10:07:25 +00:00
|
|
|
rustc_interface = { path = "../rustc_interface", optional = true }
|
2022-06-02 10:15:07 +00:00
|
|
|
rustc_middle = { path = "../rustc_middle", optional = true }
|
|
|
|
rustc_mir_dataflow = { path = "../rustc_mir_dataflow", optional = true }
|
|
|
|
rustc_mir_transform = { path = "../rustc_mir_transform", optional = true }
|
|
|
|
rustc_serialize = { path = "../rustc_serialize", optional = true }
|
|
|
|
rustc_trait_selection = { path = "../rustc_trait_selection", optional = true }
|
2022-06-02 10:07:25 +00:00
|
|
|
|
|
|
|
[features]
|
2022-06-02 10:15:07 +00:00
|
|
|
default = [
|
|
|
|
"rustc_borrowck",
|
|
|
|
"rustc_driver",
|
|
|
|
"rustc_hir",
|
|
|
|
"rustc_interface",
|
|
|
|
"rustc_middle",
|
|
|
|
"rustc_mir_dataflow",
|
|
|
|
"rustc_mir_transform",
|
|
|
|
"rustc_serialize",
|
|
|
|
"rustc_trait_selection",
|
|
|
|
]
|