mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
3cf820e17d
Since RFC 3052 soft deprecated the authors field anyway, hiding it from crates.io, docs.rs, and making Cargo not add it by default, and it is not generally up to date/useful information, we should remove it from crates in this repo.
22 lines
615 B
TOML
22 lines
615 B
TOML
[package]
|
|
name = "rustc_query_system"
|
|
version = "0.0.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
rustc_arena = { path = "../rustc_arena" }
|
|
tracing = "0.1"
|
|
rustc-rayon-core = "0.3.1"
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
|
rustc_errors = { path = "../rustc_errors" }
|
|
rustc_macros = { path = "../rustc_macros" }
|
|
rustc_index = { path = "../rustc_index" }
|
|
rustc_serialize = { path = "../rustc_serialize" }
|
|
rustc_session = { path = "../rustc_session" }
|
|
rustc_span = { path = "../rustc_span" }
|
|
parking_lot = "0.11"
|
|
smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
|