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