rust/compiler/rustc_smir/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
336 B
TOML
Raw Normal View History

[package]
name = "rustc_smir"
version = "0.0.0"
edition = "2021"
[dependencies]
2023-04-24 20:53:51 +00:00
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",
]