]> git.lizzy.rs Git - rust.git/blob - src/librustc_query_system/Cargo.toml
pin docs: add some forward references
[rust.git] / src / librustc_query_system / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_query_system"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "rustc_query_system"
9 path = "lib.rs"
10 doctest = false
11
12 [dependencies]
13 rustc_arena = { path = "../librustc_arena" }
14 log = { package = "tracing", version = "0.1" }
15 rustc-rayon-core = "0.3.0"
16 rustc_data_structures = { path = "../librustc_data_structures" }
17 rustc_errors = { path = "../librustc_errors" }
18 rustc_index = { path = "../librustc_index" }
19 rustc_serialize = { path = "../librustc_serialize" }
20 rustc_span = { path = "../librustc_span" }
21 parking_lot = "0.10"
22 smallvec = { version = "1.0", features = ["union", "may_dangle"] }