mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
4c9e842a09
The instance evaluation is needed to handle intrinsics such as `type_id` and `type_name`. Since we now use Allocation to represent all evaluated constants, provide a few methods to help process the data inside an allocation.
18 lines
471 B
TOML
18 lines
471 B
TOML
[package]
|
|
name = "rustc_smir"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
# tidy-alphabetical-start
|
|
rustc_abi = { path = "../rustc_abi" }
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
|
rustc_hir = { path = "../rustc_hir" }
|
|
rustc_middle = { path = "../rustc_middle" }
|
|
rustc_span = { path = "../rustc_span" }
|
|
rustc_target = { path = "../rustc_target" }
|
|
scoped-tls = "1.0"
|
|
stable_mir = {path = "../stable_mir" }
|
|
tracing = "0.1"
|
|
# tidy-alphabetical-end
|