Skip to content

Commit

Permalink
Merge pull request #77 from veblush/depss
Browse files Browse the repository at this point in the history
Upgraded the Bazel dependencies
  • Loading branch information
veblush committed Mar 12, 2024
2 parents 2529369 + 1f8bcd0 commit 7b46d54
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 12 deletions.
5 changes: 5 additions & 0 deletions .bazelrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
# Bazel 7 begins to enable module by default which breaks gRPC build.
# Therefore, this option is disabled until gRPC works with bzlmod.
common --enable_bzlmod=false

# gRPC C++ requires C++14 or higher
build --cxxopt='-std=c++14'
build --host_cxxopt='-std=c++14'
24 changes: 12 additions & 12 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,31 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
name = "com_google_absl",
sha256 = "987ce98f02eefbaf930d6e38ab16aa05737234d7afbab2d5c4ea7adbe50c28ed",
strip_prefix = "abseil-cpp-20230802.1",
url = "https://github.com/abseil/abseil-cpp/archive/20230802.1.tar.gz",
sha256 = "3c743204df78366ad2eaf236d6631d83f6bc928d1705dd0000b872e53b73dc6a",
strip_prefix = "abseil-cpp-20240116.1",
url = "https://github.com/abseil/abseil-cpp/archive/20240116.1.tar.gz",
)

http_archive(
name = "com_github_grpc_grpc",
sha256 = "a3a65f0129c4922c5d7f4c11dcd40083a12ca54076fd3a927bcd63c53b7e44a5",
strip_prefix = "grpc-1.59.2",
url = "https://github.com/grpc/grpc/archive/v1.59.2.tar.gz",
sha256 = "c9f9ae6e4d6f40464ee9958be4068087881ed6aa37e30d0e64d40ed7be39dd01",
strip_prefix = "grpc-1.62.1",
url = "https://github.com/grpc/grpc/archive/v1.62.1.tar.gz",
)

http_archive(
name = "com_google_googleapis",
sha256 = "f192fc1ff3bccf8a02fd1f9115d01d154aab875da43276d55989fca65fbb07c8",
strip_prefix = "googleapis-4a94b9e4403f958f65077f43863302c4ba4597da",
url = "https://github.com/googleapis/googleapis/archive/4a94b9e4403f958f65077f43863302c4ba4597da.tar.gz",
sha256 = "c88131915fe4510280af0296974ba6c31ccd5d0fa7cbe242baa43d894abbae53",
strip_prefix = "googleapis-9868a57470a969ffa1d21194a5c05d7a6e4e98cc",
url = "https://github.com/googleapis/googleapis/archive/9868a57470a969ffa1d21194a5c05d7a6e4e98cc.tar.gz",
build_file = "@com_github_googleapis_google_cloud_cpp//bazel:googleapis.BUILD",
)

http_archive(
name = "com_github_googleapis_google_cloud_cpp",
sha256 = "374efd3d85144f373cc8efcaea30712c0b1afacfc35574e2f4fd512360fd3d01",
strip_prefix = "google-cloud-cpp-2.18.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v2.18.0.tar.gz",
sha256 = "0c68782e57959c82e0c81def805c01460a042c1aae0c2feee905acaa2a2dc9bf",
strip_prefix = "google-cloud-cpp-2.22.0",
url = "https://github.com/googleapis/google-cloud-cpp/archive/v2.22.0.tar.gz",
)

http_archive(
Expand Down

0 comments on commit 7b46d54

Please sign in to comment.