1workspace(name = "com_google_googletest")
2
3load("//:googletest_deps.bzl", "googletest_deps")
4googletest_deps()
5
6load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
7
8http_archive(
9  name = "rules_python",  # 2023-07-31T20:39:27Z
10  sha256 = "1250b59a33c591a1c4ba68c62e95fc88a84c334ec35a2e23f46cbc1b9a5a8b55",
11  strip_prefix = "rules_python-e355becc30275939d87116a4ec83dad4bb50d9e1",
12  urls = ["https://github.com/bazelbuild/rules_python/archive/e355becc30275939d87116a4ec83dad4bb50d9e1.zip"],
13)
14
15http_archive(
16  name = "bazel_skylib",  # 2023-05-31T19:24:07Z
17  sha256 = "08c0386f45821ce246bbbf77503c973246ed6ee5c3463e41efc197fa9bc3a7f4",
18  strip_prefix = "bazel-skylib-288731ef9f7f688932bd50e704a91a45ec185f9b",
19  urls = ["https://github.com/bazelbuild/bazel-skylib/archive/288731ef9f7f688932bd50e704a91a45ec185f9b.zip"],
20)
21
22http_archive(
23  name = "platforms",  # 2023-07-28T19:44:27Z
24  sha256 = "40eb313613ff00a5c03eed20aba58890046f4d38dec7344f00bb9a8867853526",
25  strip_prefix = "platforms-4ad40ef271da8176d4fc0194d2089b8a76e19d7b",
26  urls = ["https://github.com/bazelbuild/platforms/archive/4ad40ef271da8176d4fc0194d2089b8a76e19d7b.zip"],
27)
28