Skip to content

Commit

Permalink
Add missing trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
nickgooding committed Oct 10, 2023
1 parent c803b4f commit 29d5bab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ build --nolegacy_external_runfiles

# TODO: migrate all dependencies from WORKSPACE to MODULE.bazel
# https://github.com/bazelbuild/rules_rust/issues/2181
common --noenable_bzlmod
common --enable_bzlmod # DO NOT MERGE

try-import %workspace%/user.bazelrc
2 changes: 1 addition & 1 deletion WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ load("@rules_rust//rust:repositories.bzl", "rules_rust_dependencies", "rust_regi

rules_rust_dependencies()

rust_register_toolchains()
rust_register_toolchains(versions = ["1.62.0"])

load("@rules_rust//crate_universe:repositories.bzl", "crate_universe_dependencies")

Expand Down
2 changes: 1 addition & 1 deletion test/unit/clippy/clippy_test.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ test_clippy_aspect_action_has_warnings_flag_test = make_clippy_aspect_unittest(_
clippy_aspect_with_explicit_flags_test = make_clippy_aspect_unittest(
_clippy_aspect_with_explicit_flags_test_impl,
config_settings = {
str(Label("//:clippy_flags")): _CLIPPY_EXPLICIT_FLAGS
str(Label("//:clippy_flags")): _CLIPPY_EXPLICIT_FLAGS,
},
)

Expand Down

0 comments on commit 29d5bab

Please sign in to comment.