瀏覽代碼

Update WORKSPACE deps (#1003)

Jon Meow 4 年之前
父節點
當前提交
cba02e1b47
共有 1 個文件被更改,包括 8 次插入8 次删除
  1. 8 8
      WORKSPACE

+ 8 - 8
WORKSPACE

@@ -10,12 +10,12 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
 # Python rules
 # Python rules
 ###############################################################################
 ###############################################################################
 
 
-rules_python_version = "0.3.0"
+rules_python_version = "0.5.0"
 
 
 # Add Bazel's python rules and set up pip.
 # Add Bazel's python rules and set up pip.
 http_archive(
 http_archive(
     name = "rules_python",
     name = "rules_python",
-    sha256 = "934c9ceb552e84577b0faf1e5a2f0450314985b4d8712b2b70717dc679fdc01b",
+    sha256 = "cd6730ed53a002c56ce4e2f396ba3b3be262fd7cb68339f0377a45e8227fe332",
     url = "https://github.com/bazelbuild/rules_python/releases/download/%s/rules_python-%s.tar.gz" % (
     url = "https://github.com/bazelbuild/rules_python/releases/download/%s/rules_python-%s.tar.gz" % (
         rules_python_version,
         rules_python_version,
         rules_python_version,
         rules_python_version,
@@ -93,13 +93,13 @@ configure_clang_toolchain(name = "bazel_cc_toolchain")
 # Abseil libraries
 # Abseil libraries
 ###############################################################################
 ###############################################################################
 
 
-abseil_version = "4a995b1eaa4a602f0d3a9ff8eac89d4649cd2fe8"
+abseil_version = "20211102.0"
 
 
 http_archive(
 http_archive(
     name = "com_google_absl",
     name = "com_google_absl",
-    sha256 = "f5021900ff9a6b8f39406d15f460714660ab6b3e727754663d786d75ecad5ee0",
+    sha256 = "a4567ff02faca671b95e31d315bab18b42b6c6f1a60e91c6ea84e5a2142112c2",
     strip_prefix = "abseil-cpp-%s" % abseil_version,
     strip_prefix = "abseil-cpp-%s" % abseil_version,
-    urls = ["https://github.com/abseil/abseil-cpp/archive/%s.zip" % abseil_version],
+    urls = ["https://github.com/abseil/abseil-cpp/archive/refs/tags/%s.zip" % abseil_version],
 )
 )
 
 
 ###############################################################################
 ###############################################################################
@@ -120,13 +120,13 @@ http_archive(
 # Google Benchmark libraries
 # Google Benchmark libraries
 ###############################################################################
 ###############################################################################
 
 
-benchmark_version = "0baacde3618ca617da95375e0af13ce1baadea47"
+benchmark_version = "1.6.0"
 
 
 http_archive(
 http_archive(
     name = "com_github_google_benchmark",
     name = "com_github_google_benchmark",
-    sha256 = "62e2f2e6d8a744d67e4bbc212fcfd06647080de4253c97ad5c6749e09faf2cb0",
+    sha256 = "3da225763533aa179af8438e994842be5ca72e4a7fed4d7976dc66c8c4502f58",
     strip_prefix = "benchmark-%s" % benchmark_version,
     strip_prefix = "benchmark-%s" % benchmark_version,
-    urls = ["https://github.com/google/benchmark/archive/%s.zip" % benchmark_version],
+    urls = ["https://github.com/google/benchmark/archive/refs/tags/v%s.zip" % benchmark_version],
 )
 )
 
 
 ###############################################################################
 ###############################################################################