Skip to content

Commit

Permalink
Updated versions of ABSL and protobuf deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
haberman committed Feb 27, 2021
1 parent 1b9cc09 commit 89df647
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions bazel/workspace_deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,20 @@ def upb_deps():
maybe(
git_repository,
name = "com_google_absl",
commit = "df3ea785d8c30a9503321a3d35ee7d35808f190d", # LTS 2020-02-25
commit = "998805a4c79d5d7a771f7e5a8ee3cbbbcba04f94",
remote = "https://github.com/abseil/abseil-cpp.git",
shallow_since = "1583355457 -0500",
)

maybe(
git_repository,
http_archive,
name = "com_google_protobuf",
remote = "https://github.com/protocolbuffers/protobuf.git",
commit = "c8f76331abf682c289fa79f05b2ee39cc7bf5a48", # Need to use Git until proto3 optional is released
sha256 = "b10bf4e2d1a7586f54e64a5d9e7837e5188fc75ae69e36f215eb01def4f9721b",
strip_prefix = "protobuf-3.15.3",
urls = [
"https://mirror.bazel.build/github.com/protocolbuffers/protobuf/archive/v3.15.3.tar.gz",
"https://github.com/protocolbuffers/protobuf/archive/v3.15.3.tar.gz",
],
)

maybe(
Expand Down

0 comments on commit 89df647

Please sign in to comment.