Skip to content

Commit

Permalink
[bazel] Match MODULE.bazel to resolved versions
Browse files Browse the repository at this point in the history
Due to semver resolution, we're not actually getting the same versions
of modules as we're requesting in `MODULE.bazel` if dependencies request
a newer version. Update to match the lock file to stop Bazel warnings.

Signed-off-by: James Wainwright <[email protected]>
  • Loading branch information
jwnrt committed Dec 18, 2024
1 parent 5f00010 commit 57df9c3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
module(name = "lowrisc_opentitan")

# Dependencies:
bazel_dep(name = "abseil-cpp", version = "20230802.0")
bazel_dep(name = "abseil-cpp", version = "20240116.1")
bazel_dep(name = "bazel_skylib", version = "1.7.1")
bazel_dep(name = "buildifier_prebuilt", version = "6.4.0")
bazel_dep(name = "googletest", version = "1.11.0")
bazel_dep(name = "googletest", version = "1.14.0.bcr.1")
bazel_dep(name = "lowrisc_misc_linters")
bazel_dep(name = "platforms", version = "0.0.10")
bazel_dep(name = "rules_cc", version = "0.0.9")
bazel_dep(name = "rules_cc", version = "0.0.14")
bazel_dep(name = "rules_foreign_cc", version = "0.9.0")
bazel_dep(name = "rules_fuzzing", version = "0.5.2")
bazel_dep(name = "rules_pkg", version = "0.7.0")
bazel_dep(name = "rules_pkg", version = "1.0.1")

# Overrides:
git_override(
Expand Down

0 comments on commit 57df9c3

Please sign in to comment.