summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_smir/Cargo.toml
blob: a6e6de5f785a2215a966195a514f61537875663e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "rustc_smir"
version = "0.0.0"
edition = "2021"

[dependencies]
rustc_hir = { path = "../rustc_hir" }
rustc_middle = { path = "../rustc_middle", optional = true }
rustc_span = { path = "../rustc_span", optional = true }
tracing = "0.1"
scoped-tls = "1.0"

[features]
default = [
    "rustc_middle",
    "rustc_span",
]