about summary refs log tree commit diff
path: root/compiler/rustc_ast_ir/Cargo.toml
blob: 1d21a07dc440b8570a8e67da14f388df753871de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "rustc_ast_ir"
version = "0.0.0"
edition = "2024"

[dependencies]
# tidy-alphabetical-start
rustc_data_structures = { path = "../rustc_data_structures", optional = true }
rustc_macros = { path = "../rustc_macros", optional = true }
rustc_serialize = { path = "../rustc_serialize", optional = true }
rustc_span = { path = "../rustc_span", optional = true }
# tidy-alphabetical-end

[features]
# tidy-alphabetical-start
default = ["nightly"]
nightly = [
    "dep:rustc_data_structures",
    "dep:rustc_macros",
    "dep:rustc_serialize",
    "dep:rustc_span",
]
# tidy-alphabetical-end