Skip to content

Commit

Permalink
Update WORKSPACE
Browse files Browse the repository at this point in the history
  • Loading branch information
jagapiou authored Dec 12, 2024
1 parent 7f1cecb commit d7a12c1
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -6,43 +6,43 @@ load("@//:python_system.bzl", "python_repo")
http_archive(
name = "com_google_googletest",
strip_prefix = "googletest-main",
urls = ["https://github.com/google/googletest/archive/main.zip"],
urls = ["https://github.com/google/googletest/archive/refs/tags/v1.13.0.zip"],
)

http_archive(
name = "com_google_benchmark",
strip_prefix = "benchmark-main",
urls = ["https://github.com/google/benchmark/archive/main.zip"],
urls = ["https://github.com/google/benchmark/archive/refs/tags/v1.8.2.zip"],
)

http_archive(
name = "rules_cc",
strip_prefix = "rules_cc-main",
urls = ["https://github.com/bazelbuild/rules_cc/archive/main.zip"],
urls = ["https://github.com/bazelbuild/rules_cc/archive/refs/tags/0.0.8.zip"],
)

http_archive(
name = "rules_python",
strip_prefix = "rules_python-main",
url = "https://github.com/bazelbuild/rules_python/archive/main.zip",
url = "https://github.com/bazelbuild/rules_python/archive/refs/tags/0.23.0.zip",
)

http_archive(
name = "bazel_skylib",
strip_prefix = "bazel-skylib-main",
urls = ["https://github.com/bazelbuild/bazel-skylib/archive/main.zip"],
urls = ["https://github.com/bazelbuild/bazel-skylib/archive/refs/tags/1.4.2.zip"],
)

http_archive(
name = "com_google_absl",
strip_prefix = "abseil-cpp-master",
urls = ["https://github.com/abseil/abseil-cpp/archive/master.zip"],
urls = ["https://github.com/abseil/abseil-cpp/archive/refs/tags/20230125.3.zip"],
)

http_archive(
name = "com_google_absl_py",
strip_prefix = "abseil-py-main",
urls = ["https://github.com/abseil/abseil-py/archive/main.zip"],
urls = ["https://github.com/abseil/abseil-py/archive/refs/tags/v1.4.0.zip"],
)

http_archive(
Expand Down Expand Up @@ -119,14 +119,14 @@ http_archive(
name = "tree_archive",
build_file = "@//bazel:tree.BUILD",
strip_prefix = "tree-master",
urls = ["https://github.com/deepmind/tree/archive/master.zip"],
urls = ["https://github.com/google-deepmind/tree/archive/refs/tags/0.1.8.zip"],
)

http_archive(
name = "pybind11_archive",
build_file = "@//bazel:pybind11.BUILD",
strip_prefix = "pybind11-master",
urls = ["https://github.com/pybind/pybind11/archive/master.zip"],
urls = ["https://github.com/pybind/pybind11/archive/refs/tags/v2.11.1.zip"],
)

http_archive(
Expand Down

0 comments on commit d7a12c1

Please sign in to comment.