File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -647,14 +647,14 @@ _common_attrs = {
647
647
default = "@bazel_tools//tools/cpp:current_cc_toolchain" ,
648
648
),
649
649
"_error_format" : attr .label (default = "//:error_format" ),
650
- "_process_wrapper " : attr .label (
651
- default = Label ("//util/process_wrapper " ),
650
+ "_persistent_worker " : attr .label (
651
+ default = Label ("//util/worker " ),
652
652
executable = True ,
653
653
allow_single_file = True ,
654
654
cfg = "exec" ,
655
655
),
656
- "_persistent_worker " : attr .label (
657
- default = Label ("//util/worker " ),
656
+ "_process_wrapper " : attr .label (
657
+ default = Label ("//util/process_wrapper " ),
658
658
executable = True ,
659
659
allow_single_file = True ,
660
660
cfg = "exec" ,
Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
15
15
# buildifier: disable=module-docstring
16
+ load ("@bazel_skylib//rules:common_settings.bzl" , "BuildSettingInfo" )
16
17
load (
17
18
"@bazel_tools//tools/build_defs/cc:action_names.bzl" ,
18
19
"CPP_LINK_EXECUTABLE_ACTION_NAME" ,
28
29
"relativize" ,
29
30
"rule_attrs" ,
30
31
)
31
- load ("@bazel_skylib//rules:common_settings.bzl" , "BuildSettingInfo" )
32
32
33
33
BuildInfo = provider (
34
34
doc = "A provider containing `rustc` build settings for a given Crate." ,
@@ -574,8 +574,8 @@ def rustc_compile_action(
574
574
]
575
575
executable = ctx .executable ._persistent_worker
576
576
execution_requirements = {
577
- "supports-workers" : "1" ,
578
577
"requires-worker-protocol" : "proto" ,
578
+ "supports-workers" : "1" ,
579
579
}
580
580
581
581
ctx .actions .run (
You can’t perform that action at this time.
0 commit comments