-
Notifications
You must be signed in to change notification settings - Fork 1
/
WORKSPACE.bazel
168 lines (113 loc) · 5.97 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
workspace(name = "borgorg")
load(
"//bazel:deps.bzl",
"org_binary_dependencies",
"org_container_dependencies",
"org_go_dependencies",
"org_manifest_dependencies",
"org_protobuf_dependencies",
"org_python_dependencies",
"org_rust_dependencies",
"org_util_dependencies",
)
###############################################################################
# U T I L D E P E N D E N C I E S
###############################################################################
org_util_dependencies()
###############################################################################
# B I N A R Y D E P E N D E N C I E S
###############################################################################
org_binary_dependencies()
###############################################################################
# K U B E R N E T E S M A N I F E S T D E P E N D E N C I E S
###############################################################################
org_manifest_dependencies()
###############################################################################
# P Y T H O N T O O L C H A I N D E P E N D E N C I E S
###############################################################################
org_python_dependencies()
load("@rules_python//python:repositories.bzl", "python_register_toolchains")
python_register_toolchains(
name = "python3_10_6",
python_version = "3.10.6",
)
###############################################################################
# P Y T H O N L I B R A R Y D E P E N D E N C I E S
###############################################################################
load("//bazel:python_lib_deps.bzl", "org_python_lib_dependencies")
org_python_lib_dependencies()
###############################################################################
# G O T O O L C H A I N D E P E N D E N C I E S
###############################################################################
org_go_dependencies()
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
go_rules_dependencies()
go_register_toolchains(version = "1.19.3")
###############################################################################
# P R O T O B U F D E P E N D E N C I E S
###############################################################################
org_protobuf_dependencies()
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
protobuf_deps()
###############################################################################
# G O L I B R A R Y D E P E N D E N C I E S
###############################################################################
load("//bazel:go_lib_deps.bzl", "org_go_lib_dependencies")
# gazelle:repository_macro bazel/go_lib_deps.bzl%org_go_lib_dependencies
org_go_lib_dependencies()
###############################################################################
# G A Z E L L E D E P E N D E N C I E S
###############################################################################
load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies")
# The following Gazelle annotation is required since we pull in bazel_gazelle
# via a macro rather than directly within this file. This call to gazell_dependencies
# must take place after the call to org_go_lib_dependencies to prevent issues
# like https://github.com/bazelbuild/bazel-gazelle/issues/1233#issuecomment-1094334092.
# gazelle:repo bazel_gazelle
gazelle_dependencies(
# By default, Gazelle only looks for WORKSPACE.
# See https://github.com/bazelbuild/bazel-gazelle/issues/678.
go_repository_default_config = "@//:WORKSPACE.bazel",
)
###############################################################################
# R U S T T O O L C H A I N D E P E N D E N C I E S
###############################################################################
org_rust_dependencies()
load("@rules_rust//rust:repositories.bzl", "rules_rust_dependencies", "rust_register_toolchains")
rules_rust_dependencies()
rust_register_toolchains(
edition = "2021",
version = "1.65.0",
)
# Use the following for the nightly toolchain:
# rust_register_toolchains(version = "nightly", iso_date = "2022-12-04", edition="2021")
load("@rules_rust//crate_universe:repositories.bzl", "crate_universe_dependencies")
crate_universe_dependencies()
###############################################################################
# R U S T L I B R A R Y D E P E N D E N C I E S
###############################################################################
load("//bazel:rust_lib_deps.bzl", "org_rust_lib_dependencies")
org_rust_lib_dependencies()
load("@crate_index//:defs.bzl", "crate_repositories")
crate_repositories()
###############################################################################
# C O N T A I N E R T O O L C H A I N D E P E N D E N C I E S
###############################################################################
org_container_dependencies()
load("@io_bazel_rules_docker//repositories:repositories.bzl", container_repositories = "repositories")
container_repositories()
load("@io_bazel_rules_docker//repositories:deps.bzl", container_deps = "deps")
container_deps()
###############################################################################
# C O N T A I N E R B A S E I M A G E D E P E N D E N C I E S
###############################################################################
# The following macro invocations (go_image_repositories and rust_image_repositories) are
# only required if go_image/rust_image is used as the invocations below will declare the
# standard Go/Rust base image dependencies. If we use container_image (better practice?)
# to fully define our own base images then the following can be omitted.
load("@io_bazel_rules_docker//go:image.bzl", go_image_repositories = "repositories")
go_image_repositories()
load("@io_bazel_rules_docker//rust:image.bzl", rust_image_repositories = "repositories")
rust_image_repositories()
load("//bazel:container_deps.bzl", "org_base_container_dependencies")
org_base_container_dependencies()