aboutsummaryrefslogtreecommitdiff
path: root/WORKSPACE
diff options
context:
space:
mode:
authorDerek Mauro <dmauro@google.com>2024-07-18 04:31:54 -0700
committerCopybara-Service <copybara-worker@google.com>2024-07-18 04:32:47 -0700
commit7795d0843a72b6c2994941763aee14519bbcfccd (patch)
tree5fc594700e36c8bab4cc781b65604c10b313c5d6 /WORKSPACE
parenteb852207758a773965301d0ae717e4235fc5301a (diff)
downloadabseil-7795d0843a72b6c2994941763aee14519bbcfccd.tar.gz
abseil-7795d0843a72b6c2994941763aee14519bbcfccd.tar.bz2
abseil-7795d0843a72b6c2994941763aee14519bbcfccd.zip
Update versions of dependencies in preparation for release
PiperOrigin-RevId: 653567769 Change-Id: I0448322da95558ff6a04ab1aeab2b238674b69d1
Diffstat (limited to 'WORKSPACE')
-rw-r--r--WORKSPACE32
1 files changed, 18 insertions, 14 deletions
diff --git a/WORKSPACE b/WORKSPACE
index 0d886091..99e3e2f3 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -20,20 +20,21 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# GoogleTest/GoogleMock framework. Used by most unit-tests.
http_archive(
- name = "com_google_googletest",
- sha256 = "8ad598c73ad796e0d8280b082cebd82a630d73e73cd3c70057938a6501bba5d7",
- strip_prefix = "googletest-1.14.0",
- # Keep this URL in sync with ABSL_GOOGLETEST_COMMIT in ci/cmake_common.sh and
- # ci/windows_msvc_cmake.bat.
- urls = ["https://github.com/google/googletest/archive/refs/tags/v1.14.0.tar.gz"],
+ name = "com_google_googletest",
+ sha256 = "7315acb6bf10e99f332c8a43f00d5fbb1ee6ca48c52f6b936991b216c586aaad",
+ strip_prefix = "googletest-1.15.0",
+ # Keep this URL in sync with the version in ci/cmake_common.sh and
+ # ci/windows_msvc_cmake.bat.
+ urls = ["https://github.com/google/googletest/releases/download/v1.15.0/googletest-1.15.0.tar.gz"],
)
# RE2 (the regular expression library used by GoogleTest)
http_archive(
name = "com_googlesource_code_re2",
- sha256 = "828341ad08524618a626167bd320b0c2acc97bd1c28eff693a9ea33a7ed2a85f",
- strip_prefix = "re2-2023-11-01",
- urls = ["https://github.com/google/re2/releases/download/2023-11-01/re2-2023-11-01.zip"],
+ sha256 = "eb2df807c781601c14a260a507a5bb4509be1ee626024cb45acbd57cb9d4032b",
+ strip_prefix = "re2-2024-07-02",
+ urls = ["https://github.com/google/re2/releases/download/2024-07-02/re2-2024-07-02.tar.gz"],
+ repo_mapping = {"@abseil-cpp": "@com_google_absl"},
)
# Google benchmark.
@@ -46,14 +47,17 @@ http_archive(
# Bazel Skylib.
http_archive(
- name = "bazel_skylib",
- sha256 = "cd55a062e763b9349921f0f5db8c3933288dc8ba4f76dd9416aac68acee3cb94",
- urls = ["https://github.com/bazelbuild/bazel-skylib/releases/download/1.5.0/bazel-skylib-1.5.0.tar.gz"],
+ name = "bazel_skylib",
+ sha256 = "cd55a062e763b9349921f0f5db8c3933288dc8ba4f76dd9416aac68acee3cb94",
+ urls = ["https://github.com/bazelbuild/bazel-skylib/releases/download/1.5.0/bazel-skylib-1.5.0.tar.gz"],
)
# Bazel platform rules.
http_archive(
name = "platforms",
- sha256 = "8150406605389ececb6da07cbcb509d5637a3ab9a24bc69b1101531367d89d74",
- urls = ["https://github.com/bazelbuild/platforms/releases/download/0.0.8/platforms-0.0.8.tar.gz"],
+ urls = [
+ "https://mirror.bazel.build/github.com/bazelbuild/platforms/releases/download/0.0.10/platforms-0.0.10.tar.gz",
+ "https://github.com/bazelbuild/platforms/releases/download/0.0.10/platforms-0.0.10.tar.gz",
+ ],
+ sha256 = "218efe8ee736d26a3572663b374a253c012b716d8af0c07e842e82f238a0a7ee",
)