Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,20 @@ bazel_dep(name = "boost.signals2", version = "1.87.0")
bazel_dep(name = "boost.tuple", version = "1.87.0")

# thirdparty
bazel_dep(name = "abseil-cpp", version = "20240116.2", repo_name = "com_google_absl")
bazel_dep(name = "abseil-cpp", version = "20250127.1", repo_name = "com_google_absl")
single_version_override(
module_name = "abseil-cpp",
# locked at 20250127.1 to be compatible with protobuf
# In newer versions, the target `if_constexpr` in `absl/utility/BUILD.bazel`
# that protobuf depends on has been removed or migrated.
version = "20250127.1",
)

bazel_dep(name = "cpplint", version = "2.0.2")
bazel_dep(name = "eigen", version = "4.0.0-20241125.bcr.2")
bazel_dep(name = "nlohmann_json", version = "3.12.0", repo_name = "com_github_nlohmann_json")
bazel_dep(name = "gflags", version = "2.2.2", repo_name = "com_github_gflags_gflags")

# Note: build gflags as a shared library and make the third-party(pre-compiled
# library such as paddleinference) link to it to keep only one copy of gflags
# in one process
Expand Down
Loading