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 10d1167 commit 22168a3
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,14 +5,14 @@
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 = "googletest", version = "1.11.0")
bazel_dep(name = "googletest", version = "1.14.0.bcr.1")
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")

# Dev dependencies:
bazel_dep(
Expand Down

0 comments on commit 22168a3

Please sign in to comment.