1[package]
2name = "rustc_ast_ir"
3version = "0.0.0"
4edition = "2024"
5
6[dependencies]
7# tidy-alphabetical-start
8rustc_data_structures = { path = "../rustc_data_structures", optional = true }
9rustc_macros = { path = "../rustc_macros", optional = true }
10rustc_serialize = { path = "../rustc_serialize", optional = true }
11# tidy-alphabetical-end
12
13[features]
14default = ["nightly"]
15nightly = [
16 "dep:rustc_serialize",
17 "dep:rustc_data_structures",
18 "dep:rustc_macros",
19]
20
Learn Rust with the experts
Find out more