2022-06-02 05:07:25 -05:00
|
|
|
[package]
|
|
|
|
name = "rustc_smir"
|
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-10-19 21:37:29 -05:00
|
|
|
# tidy-alphabetical-start
|
2023-12-06 15:39:55 -06:00
|
|
|
rustc_abi = { path = "../rustc_abi" }
|
2024-06-25 23:09:55 -05:00
|
|
|
rustc_ast = { path = "../rustc_ast" }
|
|
|
|
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
|
2023-10-09 04:56:14 -05:00
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
2023-09-14 10:50:11 -05:00
|
|
|
rustc_hir = { path = "../rustc_hir" }
|
|
|
|
rustc_middle = { path = "../rustc_middle" }
|
2024-02-12 13:44:35 -06:00
|
|
|
rustc_session = { path = "../rustc_session" }
|
2023-09-14 10:50:11 -05:00
|
|
|
rustc_span = { path = "../rustc_span" }
|
|
|
|
rustc_target = { path = "../rustc_target" }
|
2023-10-21 01:05:38 -05:00
|
|
|
scoped-tls = "1.0"
|
2023-09-14 10:50:11 -05:00
|
|
|
stable_mir = {path = "../stable_mir" }
|
2023-10-05 22:57:25 -05:00
|
|
|
tracing = "0.1"
|
2023-10-19 21:37:29 -05:00
|
|
|
# tidy-alphabetical-end
|