|
1 | 1 | workspace(name = "com_google_absl") |
2 | 2 | # Bazel toolchains |
3 | 3 | http_archive( |
4 | | - name = "bazel_toolchains", |
5 | | - urls = [ |
6 | | - "https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/archive/f8847f64e6950e8ab9fde1c0aba768550b0d9ab2.tar.gz", |
7 | | - "https://github.com/bazelbuild/bazel-toolchains/archive/f8847f64e6950e8ab9fde1c0aba768550b0d9ab2.tar.gz", |
8 | | - ], |
9 | | - strip_prefix = "bazel-toolchains-f8847f64e6950e8ab9fde1c0aba768550b0d9ab2", |
10 | | - sha256 = "794366f51fea224b3656a0b0f8f1518e739748646523a572fcd3d68614a0e670", |
| 4 | + name = "bazel_toolchains", |
| 5 | + urls = [ |
| 6 | + "https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/archive/287b64e0a211fb7c23b74695f8d5f5205b61f4eb.tar.gz", |
| 7 | + "https://github.com/bazelbuild/bazel-toolchains/archive/287b64e0a211fb7c23b74695f8d5f5205b61f4eb.tar.gz", |
| 8 | + ], |
| 9 | + strip_prefix = "bazel-toolchains-287b64e0a211fb7c23b74695f8d5f5205b61f4eb", |
| 10 | + sha256 = "aca8ac6afd7745027ee4a43032b51a725a61a75a30f02cc58681ee87e4dcdf4b", |
11 | 11 | ) |
12 | 12 |
|
13 | 13 | # GoogleTest/GoogleMock framework. Used by most unit-tests. |
14 | 14 | http_archive( |
15 | 15 | name = "com_google_googletest", |
16 | 16 | urls = ["https://github.com/google/googletest/archive/4e4df226fc197c0dda6e37f5c8c3845ca1e73a49.zip"], |
17 | 17 | strip_prefix = "googletest-4e4df226fc197c0dda6e37f5c8c3845ca1e73a49", |
| 18 | + sha256 = "d4179caf54410968d1fff0b869e7d74803dd30209ee6645ccf1ca65ab6cf5e5a", |
18 | 19 | ) |
19 | 20 |
|
20 | 21 | # Google benchmark. |
21 | 22 | http_archive( |
22 | 23 | name = "com_github_google_benchmark", |
23 | 24 | urls = ["https://github.com/google/benchmark/archive/16703ff83c1ae6d53e5155df3bb3ab0bc96083be.zip"], |
24 | 25 | strip_prefix = "benchmark-16703ff83c1ae6d53e5155df3bb3ab0bc96083be", |
| 26 | + sha256 = "59f918c8ccd4d74b6ac43484467b500f1d64b40cc1010daa055375b322a43ba3", |
25 | 27 | ) |
26 | 28 |
|
27 | 29 | # RE2 regular-expression framework. Used by some unit-tests. |
28 | 30 | http_archive( |
29 | 31 | name = "com_googlesource_code_re2", |
30 | 32 | urls = ["https://github.com/google/re2/archive/6cf8ccd82dbaab2668e9b13596c68183c9ecd13f.zip"], |
31 | 33 | strip_prefix = "re2-6cf8ccd82dbaab2668e9b13596c68183c9ecd13f", |
| 34 | + sha256 = "279a852219dbfc504501775596089d30e9c0b29664ce4128b0ac4c841471a16a", |
32 | 35 | ) |
0 commit comments