summaryrefslogtreecommitdiff
path: root/compiler/rustc_smir/Cargo.toml
blob: 80360a3c73f8dcfddbff2b5ab5c324f9f0c0662f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[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"

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