diff options
| author | Michael Goulet <michael@errs.io> | 2024-07-15 12:40:06 -0400 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2024-07-15 12:40:10 -0400 |
| commit | 247ad3385cb96d816da02edfb6393cc1952e5673 (patch) | |
| tree | 4d585131d6f3cf7e69192f77cc3ca87e181713a5 /compiler/rustc_interface | |
| parent | 88fa119c77682e6d55ce21001cf761675cfebeae (diff) | |
| download | rust-247ad3385cb96d816da02edfb6393cc1952e5673.tar.gz rust-247ad3385cb96d816da02edfb6393cc1952e5673.zip | |
Use dep: for crate dependencies
Diffstat (limited to 'compiler/rustc_interface')
| -rw-r--r-- | compiler/rustc_interface/Cargo.toml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/compiler/rustc_interface/Cargo.toml b/compiler/rustc_interface/Cargo.toml index 4b3b0728f38..b5abf145d6b 100644 --- a/compiler/rustc_interface/Cargo.toml +++ b/compiler/rustc_interface/Cargo.toml @@ -53,6 +53,11 @@ tracing = "0.1" [features] # tidy-alphabetical-start -llvm = ['rustc_codegen_llvm'] -rustc_use_parallel_compiler = ['rustc-rayon', 'rustc-rayon-core', 'rustc_query_impl/rustc_use_parallel_compiler', 'rustc_errors/rustc_use_parallel_compiler'] +llvm = ['dep:rustc_codegen_llvm'] +rustc_use_parallel_compiler = [ + 'dep:rustc-rayon', + 'dep:rustc-rayon-core', + 'rustc_query_impl/rustc_use_parallel_compiler', + 'rustc_errors/rustc_use_parallel_compiler' +] # tidy-alphabetical-end |
