rust/compiler/rustc_ast_ir/Cargo.toml

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

20 lines
472 B
TOML
Raw Normal View History

[package]
name = "rustc_ast_ir"
version = "0.0.0"
2025-02-20 18:37:58 +00:00
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 }
# tidy-alphabetical-end
[features]
default = ["nightly"]
nightly = [
2024-07-15 12:40:06 -04:00
"dep:rustc_serialize",
"dep:rustc_data_structures",
"dep:rustc_macros",
]