diff options
Diffstat (limited to 'compiler/rustc_query_impl/Cargo.toml')
-rw-r--r-- | compiler/rustc_query_impl/Cargo.toml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/compiler/rustc_query_impl/Cargo.toml b/compiler/rustc_query_impl/Cargo.toml new file mode 100644 index 000000000..5673bb83b --- /dev/null +++ b/compiler/rustc_query_impl/Cargo.toml @@ -0,0 +1,26 @@ +[package] +name = "rustc_query_impl" +version = "0.0.0" +edition = "2021" + +[lib] +doctest = false + +[dependencies] +measureme = "10.0.0" +rustc-rayon-core = { version = "0.4.0", optional = true } +rustc_ast = { path = "../rustc_ast" } +rustc_data_structures = { path = "../rustc_data_structures" } +rustc_errors = { path = "../rustc_errors" } +rustc_hir = { path = "../rustc_hir" } +rustc_index = { path = "../rustc_index" } +rustc_macros = { path = "../rustc_macros" } +rustc_middle = { path = "../rustc_middle" } +rustc_query_system = { path = "../rustc_query_system" } +rustc_serialize = { path = "../rustc_serialize" } +rustc_session = { path = "../rustc_session" } +rustc_span = { path = "../rustc_span" } +tracing = "0.1" + +[features] +rustc_use_parallel_compiler = ["rustc-rayon-core", "rustc_query_system/rustc_use_parallel_compiler"] |