-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE.bazel
35 lines (21 loc) · 1.08 KB
/
WORKSPACE.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
workspace(name = "com_github_3rdparty_eventuals_grpc_examples")
########################################################################
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
########################################################################
git_repository(
name = "com_github_3rdparty_eventuals",
commit = "8f304ccf696b823c6b7179157150f83e91b46496",
recursive_init_submodules = True,
remote = "https://github.com/3rdparty/eventuals",
shallow_since = "1706226227 +0100",
)
load("@com_github_3rdparty_eventuals//bazel:submodules.bzl", eventuals_submodules = "submodules")
eventuals_submodules()
load("@com_github_3rdparty_eventuals//bazel:repos.bzl", eventuals_repos = "repos")
eventuals_repos()
load("@com_github_3rdparty_eventuals//bazel:deps.bzl", eventuals_deps = "deps")
eventuals_deps()
########################################################################
load("@com_github_grpc_grpc//bazel:grpc_extra_deps.bzl", "grpc_extra_deps")
grpc_extra_deps()
########################################################################