2019-09-25 13:55:18 -05:00
|
|
|
[package]
|
|
|
|
name = "rustc_index"
|
|
|
|
version = "0.0.0"
|
2021-09-19 11:49:55 -05:00
|
|
|
edition = "2021"
|
2019-09-25 13:55:18 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2023-10-19 21:37:29 -05:00
|
|
|
# tidy-alphabetical-start
|
2021-04-21 23:40:29 -05:00
|
|
|
arrayvec = { version = "0.7", default-features = false }
|
2023-10-23 19:16:14 -05:00
|
|
|
rustc_index_macros = { path = "../rustc_index_macros", default-features = false }
|
2022-10-28 10:15:55 -05:00
|
|
|
rustc_macros = { path = "../rustc_macros", optional = true }
|
2023-10-19 21:37:29 -05:00
|
|
|
rustc_serialize = { path = "../rustc_serialize", optional = true }
|
2022-06-26 17:48:55 -05:00
|
|
|
smallvec = "1.8.1"
|
2023-10-19 21:37:29 -05:00
|
|
|
# tidy-alphabetical-end
|
2022-10-28 10:15:55 -05:00
|
|
|
|
|
|
|
[features]
|
2023-10-19 21:37:29 -05:00
|
|
|
# tidy-alphabetical-start
|
2022-10-28 10:15:55 -05:00
|
|
|
default = ["nightly"]
|
2024-07-15 11:40:06 -05:00
|
|
|
nightly = [
|
|
|
|
"dep:rustc_serialize",
|
|
|
|
"dep:rustc_macros",
|
|
|
|
"rustc_index_macros/nightly",
|
|
|
|
]
|
2022-09-02 13:17:20 -05:00
|
|
|
rustc_randomized_layouts = []
|
2023-10-19 21:37:29 -05:00
|
|
|
# tidy-alphabetical-end
|