Skip to content

Commit 3c5afe5

Browse files
authored
Fix bazel formatting (#3583)
Fixes the following error: ``` rust/toolchain.bzl:867: unsorted-dict-items: Dictionary items are out of their lexicographical order. (https://github.com/bazelbuild/buildtools/blob/main/WARNINGS.md#unsorted-dict-items) ```
1 parent cfb9af9 commit 3c5afe5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

rust/toolchain.bzl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -859,16 +859,16 @@ rust_toolchain = rule(
859859
allow_single_file = True,
860860
cfg = "exec",
861861
),
862-
"llvm_profdata": attr.label(
863-
doc = "The location of the `llvm-profdata` binary. Can be a direct source or a filegroup containing one item. If `llvm_cov` is None, this can be None as well and rust code is not instrumented for coverage.",
864-
allow_single_file = True,
865-
cfg = "exec",
866-
),
867862
"llvm_lib": attr.label(
868863
doc = "The location of the `libLLVM` shared object files. If `llvm_cov` is None, this can be None as well and rust code is not instrumented for coverage.",
869864
allow_files = True,
870865
cfg = "exec",
871866
),
867+
"llvm_profdata": attr.label(
868+
doc = "The location of the `llvm-profdata` binary. Can be a direct source or a filegroup containing one item. If `llvm_cov` is None, this can be None as well and rust code is not instrumented for coverage.",
869+
allow_single_file = True,
870+
cfg = "exec",
871+
),
872872
"llvm_tools": attr.label(
873873
doc = "LLVM tools that are shipped with the Rust toolchain.",
874874
allow_files = True,

0 commit comments

Comments
 (0)