Skip to content

Commit

Permalink
Remove --check_direct_dependencies=error (#57)
Browse files Browse the repository at this point in the history
* Remove --check_direct_dependencies=error

This makes testing with bazel @ HEAD harder, and using the lowest
versions supported is fine for this ruleset

* dev deps
  • Loading branch information
keith authored Nov 14, 2024
1 parent bc12702 commit 3613606
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .bazelrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
common --check_direct_dependencies=error
common --lockfile_mode=off

# TODO: Remove once lld ignores this
Expand Down
6 changes: 3 additions & 3 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ module(
)

bazel_dep(name = "apple_support", version = "1.15.1", dev_dependency = True, repo_name = "build_bazel_apple_support")
bazel_dep(name = "bazel_skylib", version = "1.6.1", dev_dependency = True)
bazel_dep(name = "rules_apple", version = "3.5.1", dev_dependency = True, repo_name = "build_bazel_rules_apple")
bazel_dep(name = "rules_swift", version = "1.18.0", dev_dependency = True, repo_name = "build_bazel_rules_swift")
bazel_dep(name = "bazel_skylib", version = "1.7.1", dev_dependency = True)
bazel_dep(name = "rules_apple", version = "3.13.0", dev_dependency = True, repo_name = "build_bazel_rules_apple")
bazel_dep(name = "rules_swift", version = "2.2.1", dev_dependency = True, repo_name = "build_bazel_rules_swift")

non_module_deps = use_extension("//:deps.bzl", "linker_deps")
use_repo(
Expand Down

0 comments on commit 3613606

Please sign in to comment.