Skip to content

Commit

Permalink
Merge 039bc35 into 1833c18
Browse files Browse the repository at this point in the history
  • Loading branch information
gjasny committed Feb 16, 2023
2 parents 1833c18 + 039bc35 commit 529f1b3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions MODULE.bazel
Expand Up @@ -12,8 +12,8 @@ use_repo(
"com_github_google_benchmark",
)

bazel_dep(name = "boringssl", version = "0.0.0-20211025-d4f1ab9")
bazel_dep(name = "boringssl", version = "0.0.0-20230215-5c22014")
bazel_dep(name = "googletest", version = "1.12.1", dev_dependency = True, repo_name = "com_google_googletest")
bazel_dep(name = "platforms", version = "0.0.6", dev_dependency = True)
bazel_dep(name = "rules_cc", version = "0.0.4", dev_dependency = True)
bazel_dep(name = "rules_cc", version = "0.0.5", dev_dependency = True)
bazel_dep(name = "zlib", version = "1.2.13")
16 changes: 8 additions & 8 deletions bazel/repositories.bzl
Expand Up @@ -26,11 +26,11 @@ def prometheus_cpp_repositories():
maybe(
http_archive,
name = "com_github_curl",
sha256 = "3dfdd39ba95e18847965cd3051ea6d22586609d9011d91df7bc5521288987a82",
strip_prefix = "curl-7.86.0",
sha256 = "dfb8582a05a893e305783047d791ffef5e167d295cf8d12b9eb9cfa0991ca5a9",
strip_prefix = "curl-7.88.0",
urls = [
"https://github.com/curl/curl/releases/download/curl-7_86_0/curl-7.86.0.tar.gz",
"https://curl.haxx.se/download/curl-7.86.0.tar.gz",
"https://github.com/curl/curl/releases/download/curl-7_88_0/curl-7.88.0.tar.gz",
"https://curl.haxx.se/download/curl-7.88.0.tar.gz",
],
build_file = "@com_github_jupp0r_prometheus_cpp//bazel:curl.BUILD",
)
Expand Down Expand Up @@ -63,11 +63,11 @@ def prometheus_cpp_repositories():
name = "boringssl",
# Use github mirror instead of https://boringssl.googlesource.com/boringssl
# to obtain a boringssl archive with consistent sha256
sha256 = "534fa658bd845fd974b50b10f444d392dfd0d93768c4a51b61263fd37d851c40",
strip_prefix = "boringssl-b9232f9e27e5668bc0414879dcdedb2a59ea75f2",
sha256 = "ad0b806b6c5cbd6cae121c608945d5fed468748e330632e8d53315089ad52c67",
strip_prefix = "boringssl-6195bf8242156c9a2fa75702eee058f91b86a88b",
urls = [
"https://storage.googleapis.com/grpc-bazel-mirror/github.com/google/boringssl/archive/b9232f9e27e5668bc0414879dcdedb2a59ea75f2.tar.gz",
"https://github.com/google/boringssl/archive/b9232f9e27e5668bc0414879dcdedb2a59ea75f2.tar.gz",
"https://storage.googleapis.com/grpc-bazel-mirror/github.com/google/boringssl/archive/6195bf8242156c9a2fa75702eee058f91b86a88b.tar.gz",
"https://github.com/google/boringssl/archive/6195bf8242156c9a2fa75702eee058f91b86a88b.tar.gz",
],
)

Expand Down

0 comments on commit 529f1b3

Please sign in to comment.