mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
22 lines
535 B
TOML
22 lines
535 B
TOML
|
[package]
|
||
|
name = "rustc_ast_ir"
|
||
|
version = "0.0.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
[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]
|
||
|
default = ["nightly"]
|
||
|
nightly = [
|
||
|
"rustc_serialize",
|
||
|
"rustc_data_structures",
|
||
|
"rustc_macros",
|
||
|
"rustc_span",
|
||
|
]
|