mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
17 lines
373 B
TOML
17 lines
373 B
TOML
[package]
|
|
name = "rustc_index"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
arrayvec = { version = "0.7", default-features = false }
|
|
rustc_serialize = { path = "../rustc_serialize", optional = true }
|
|
rustc_macros = { path = "../rustc_macros", optional = true }
|
|
smallvec = "1.8.1"
|
|
|
|
[features]
|
|
default = ["nightly"]
|
|
nightly = ["rustc_serialize", "rustc_macros"]
|