2019-09-26 02:55:18 +08:00
|
|
|
[package]
|
|
|
|
|
name = "rustc_index"
|
|
|
|
|
version = "0.0.0"
|
2025-02-20 18:37:58 +00:00
|
|
|
edition = "2024"
|
2019-09-26 02:55:18 +08:00
|
|
|
|
|
|
|
|
[dependencies]
|
2023-10-20 13:37:29 +11:00
|
|
|
# tidy-alphabetical-start
|
2024-12-19 20:07:45 +03:00
|
|
|
rustc_index_macros = { path = "../rustc_index_macros" }
|
2022-10-28 18:45:55 +03:30
|
|
|
rustc_macros = { path = "../rustc_macros", optional = true }
|
2023-10-20 13:37:29 +11:00
|
|
|
rustc_serialize = { path = "../rustc_serialize", optional = true }
|
2022-06-27 08:48:55 +10:00
|
|
|
smallvec = "1.8.1"
|
2023-10-20 13:37:29 +11:00
|
|
|
# tidy-alphabetical-end
|
2022-10-28 18:45:55 +03:30
|
|
|
|
|
|
|
|
[features]
|
2023-10-20 13:37:29 +11:00
|
|
|
# tidy-alphabetical-start
|
2022-10-28 18:45:55 +03:30
|
|
|
default = ["nightly"]
|
2024-07-15 12:40:06 -04:00
|
|
|
nightly = [
|
|
|
|
|
"dep:rustc_macros",
|
2025-07-31 13:15:49 +10:00
|
|
|
"dep:rustc_serialize",
|
2024-07-15 12:40:06 -04:00
|
|
|
"rustc_index_macros/nightly",
|
|
|
|
|
]
|
2022-09-02 20:17:20 +02:00
|
|
|
rustc_randomized_layouts = []
|
2023-10-20 13:37:29 +11:00
|
|
|
# tidy-alphabetical-end
|