Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
iceboy233 committed Jun 17, 2024
1 parent c970e66 commit fa3f094
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 21 deletions.
42 changes: 21 additions & 21 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -3,44 +3,44 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
name = "bazel_skylib",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz",
],
sha256 = "f7be3474d42aae265405a592bb7da8e171919d74c16f082a5457840f06054728",
urls = ["https://github.com/bazelbuild/bazel-skylib/releases/download/1.5.0/bazel-skylib-1.5.0.tar.gz"],
integrity = "sha256-zVWgYudjuTSZIfD124w5MyiNyLpPdt2UFqrGis7jy5Q=",
)

git_repository(
http_archive(
name = "boringssl",
# chromium-107.0.5304.121 (linux/stable)
commit = "7b00d84b025dff0c392c2df5ee8aa6d3c63ad539",
remote = "https://github.com/google/boringssl.git",
# 0.0.0-20240126-22d349c
urls = ["https://github.com/google/boringssl/archive/22d349c4596e81425ec88f82fab47063a9a2bac6.tar.gz"],
integrity = "sha256-rMEdcuN6QX90hSzHXUCE7HEhcnwBvR6bVSUjHJsDwnc=",
strip_prefix = "boringssl-22d349c4596e81425ec88f82fab47063a9a2bac6",
)

git_repository(
http_archive(
name = "com_github_google_benchmark",
commit = "0d98dba29d66e93259db7daa53a9327df767a415",
remote = "https://github.com/google/benchmark.git",
urls = ["https://github.com/google/benchmark/archive/refs/tags/v1.8.4.tar.gz"],
integrity = "sha256-PnBZtrEfsbvijjPgJRk5jKlMGBiHTr7RjlBNxvcJvkU=",
strip_prefix = "benchmark-1.8.4",
)

git_repository(
http_archive(
name = "com_github_google_flatbuffers",
commit = "a9a295fecf3fbd5a4f571f53b01f63202a3e2113",
remote = "https://github.com/google/flatbuffers.git",
urls = ["https://github.com/google/flatbuffers/archive/refs/tags/v2.0.0.tar.gz"],
integrity = "sha256-nduQMXmPT4dU0A/KLxpo7PnQ+D36xyOa8TEeT9mlZcQ=",
strip_prefix = "flatbuffers-2.0.0",
)

http_archive(
name = "com_google_absl",
sha256 = "54707f411cb62a26a776dad5fd60829098c181700edcd022ea5c2ca49e9b7ef1",
strip_prefix = "abseil-cpp-20220623.1",
urls = ["https://github.com/abseil/abseil-cpp/archive/refs/tags/20220623.1.zip"],
urls = ["https://github.com/abseil/abseil-cpp/releases/download/20240116.2/abseil-cpp-20240116.2.tar.gz"],
integrity = "sha256-czcmuMOm05pBINfkXqi0GkNM2s3kAculAPFCNsSbOdw=",
strip_prefix = "abseil-cpp-20240116.2",
)

http_archive(
name = "com_google_googletest",
sha256 = "24564e3b712d3eb30ac9a85d92f7d720f60cc0173730ac166f27dda7fed76cb2",
strip_prefix = "googletest-release-1.12.1",
urls = ["https://github.com/google/googletest/archive/refs/tags/release-1.12.1.zip"],
urls = ["https://github.com/google/googletest/archive/refs/tags/v1.14.0.tar.gz"],
integrity = "sha256-itWYxzrXluDYKAsILOvYKmMNc+c808cAV5OKZQG7pdc=",
strip_prefix = "googletest-1.14.0",
)

git_repository(
Expand Down
1 change: 1 addition & 0 deletions net/tools/rpc-relay.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

#include "absl/strings/escaping.h"
#include "absl/strings/numbers.h"
#include "absl/strings/str_split.h"
#include "base/flags.h"
#include "base/logging.h"
#include "net/asio.h"
Expand Down

0 comments on commit fa3f094

Please sign in to comment.