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

[dependencies]
# Use optional dependencies for rustc_* in order to support building this crate separately.
rustc_hir = { path = "../rustc_hir", optional = true }
rustc_middle = { path = "../rustc_middle", optional = true }
rustc_span = { path = "../rustc_span", optional = true }
rustc_target = { path = "../rustc_target", optional = true }
tracing = "0.1"
scoped-tls = "1.0"

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