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