blob: 5af740d933ab0b11a077e5121ec996644487970b [file] [log] [blame]
Sergiusz Bazanski5f9b1ec2019-09-22 02:19:18 +02001workspace(
2 name = "hscloud",
3)
4
Sergiusz Bazanskide061802019-01-13 21:14:02 +01005load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
Sergiusz Bazanski3e597182019-04-19 14:40:47 +02006load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
Sergiusz Bazanskide061802019-01-13 21:14:02 +01007
Serge Bazanski2ce36762019-07-14 16:29:52 +02008# Skylib
9
10skylib_version = "0.8.0"
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +020011
Serge Bazanski2ce36762019-07-14 16:29:52 +020012http_archive(
13 name = "bazel_skylib",
14 type = "tar.gz",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +020015 url = "https://github.com/bazelbuild/bazel-skylib/releases/download/{}/bazel-skylib.{}.tar.gz".format(skylib_version, skylib_version),
Serge Bazanski2ce36762019-07-14 16:29:52 +020016 sha256 = "2ef429f5d7ce7111263289644d233707dba35e39696377ebab8b0bc701f7818e",
17)
18
Sergiusz Bazanski1fad2e52019-08-01 20:16:27 +020019# subpar
20
21git_repository(
22 name = "subpar",
23 remote = "https://github.com/q3k/subpar",
24 commit = "5dd9fb4586616c69df9b3f5aba12f08f85d708d1",
Sergiusz Bazanski5f9b1ec2019-09-22 02:19:18 +020025 shallow_since = "1563277890 +0200",
Sergiusz Bazanski1fad2e52019-08-01 20:16:27 +020026)
27
Serge Bazanski2ce36762019-07-14 16:29:52 +020028# Docker rules
29
30http_archive(
31 name = "io_bazel_rules_docker",
32 sha256 = "87fc6a2b128147a0a3039a2fd0b53cc1f2ed5adb8716f50756544a572999ae9a",
33 strip_prefix = "rules_docker-0.8.1",
34 urls = ["https://github.com/bazelbuild/rules_docker/archive/v0.8.1.tar.gz"],
35)
36
Sergiusz Bazanski356ea8b2019-07-21 23:56:43 +020037load("@io_bazel_rules_docker//toolchains/docker:toolchain.bzl", docker_toolchain_configure = "toolchain_configure")
38
39# This forces the use of Docker $HOME/.docker configuration.
40docker_toolchain_configure(
41 name = "docker_config",
42 client_config = "",
Serge Bazanskib2d6b112019-07-30 13:07:04 +020043 docker_path = "/usr/bin/docker",
Sergiusz Bazanski356ea8b2019-07-21 23:56:43 +020044)
45
Serge Bazanski2ce36762019-07-14 16:29:52 +020046load(
47 "@io_bazel_rules_docker//repositories:repositories.bzl",
48 container_repositories = "repositories",
49)
50
51container_repositories()
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +020052
Sergiusz Bazanski1e6b52a2019-05-15 19:08:25 +020053# Nix rules
54http_archive(
55 name = "io_tweag_rules_nixpkgs",
Sergiusz Bazanski96c428f2019-11-17 19:00:46 +010056 strip_prefix = "rules_nixpkgs-33c50ba64c11dddb95823d12f6b1324083cc5c43",
57 urls = ["https://github.com/tweag/rules_nixpkgs/archive/33c50ba64c11dddb95823d12f6b1324083cc5c43.tar.gz"],
58 sha256 = "91fedd5151bbd9ef89efc39e2172921bd7036c68cff54712a5df8ddf62bd6922",
Sergiusz Bazanski1e6b52a2019-05-15 19:08:25 +020059)
60
61# Nix packages
62
63load("@io_tweag_rules_nixpkgs//nixpkgs:nixpkgs.bzl", "nixpkgs_git_repository", "nixpkgs_package")
Sergiusz Bazanskic2924102019-06-30 17:35:57 +020064
Sergiusz Bazanski1e6b52a2019-05-15 19:08:25 +020065nixpkgs_git_repository(
66 name = "nixpkgs",
67 revision = "2f1f9a9fe8a3c22f0677733523eaf6bd33995d50",
68)
69
70nixpkgs_package(
71 name = "nixops",
Sergiusz Bazanski44116ea2019-05-18 16:26:56 +020072 attribute_path = "nixops",
Sergiusz Bazanskic2924102019-06-30 17:35:57 +020073 repositories = {"nixpkgs": "@nixpkgs"},
Sergiusz Bazanski1e6b52a2019-05-15 19:08:25 +020074)
75
Sergiusz Bazanski3e597182019-04-19 14:40:47 +020076# Python rules
Serge Bazanski2ce36762019-07-14 16:29:52 +020077
Sergiusz Bazanskide061802019-01-13 21:14:02 +010078git_repository(
Serge Bazanski2ce36762019-07-14 16:29:52 +020079 name = "com_apt_itude_rules_pip",
Sergiusz Bazanski5f9b1ec2019-09-22 02:19:18 +020080 commit = "186bade4f054c0a9be7037585584c9c572cba483",
Serge Bazanski2ce36762019-07-14 16:29:52 +020081 remote = "https://github.com/apt-itude/rules_pip.git",
Sergiusz Bazanskide061802019-01-13 21:14:02 +010082)
83
84# Python dependencies
Serge Bazanski2ce36762019-07-14 16:29:52 +020085load("@com_apt_itude_rules_pip//rules:dependencies.bzl", "pip_rules_dependencies")
Sergiusz Bazanskide061802019-01-13 21:14:02 +010086
Serge Bazanski2ce36762019-07-14 16:29:52 +020087pip_rules_dependencies()
Sergiusz Bazanskide061802019-01-13 21:14:02 +010088
Serge Bazanski2ce36762019-07-14 16:29:52 +020089load("@com_apt_itude_rules_pip//rules:repository.bzl", "pip_repository")
90
91pip_repository(
Sergiusz Bazanski5f9b1ec2019-09-22 02:19:18 +020092 name = "pydeps",
93 requirements = "//third_party/py:requirements-lock.json",
Sergiusz Bazanskide061802019-01-13 21:14:02 +010094)
95
Sergiusz Bazanski5f9b1ec2019-09-22 02:19:18 +020096load("@pydeps//:requirements.bzl", "pip_install")
97
98pip_install()
99
Sergiusz Bazanski1fad2e52019-08-01 20:16:27 +0200100# stackb/rules_proto (for Python proto compilation)
101http_archive(
102 name = "build_stack_rules_proto",
103 urls = ["https://github.com/stackb/rules_proto/archive/b93b544f851fdcd3fc5c3d47aee3b7ca158a8841.tar.gz"],
104 sha256 = "c62f0b442e82a6152fcd5b1c0b7c4028233a9e314078952b6b04253421d56d61",
105 strip_prefix = "rules_proto-b93b544f851fdcd3fc5c3d47aee3b7ca158a8841",
106)
107
108load("@build_stack_rules_proto//python:deps.bzl", "python_grpc_compile")
109
110python_grpc_compile()
111
112load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")
113
114grpc_deps()
115
Sergiusz Bazanski65865332019-05-18 16:23:45 +0200116# Docker base images
117
118load("@io_bazel_rules_docker//container:container.bzl", "container_pull")
Sergiusz Bazanskia7e26cc2019-06-21 20:38:35 +0200119
Sergiusz Bazanski65865332019-05-18 16:23:45 +0200120container_pull(
121 name = "prodimage-bionic",
Serge Bazanskib2d6b112019-07-30 13:07:04 +0200122 registry = "registry.k0.hswaw.net",
123 repository = "q3k/prodimage",
Serge Bazanskiec71cb52019-08-22 18:13:13 +0200124 tag = "20190822-1227",
125 digest = "sha256:1cd1f84169b8e1414a5d511b42909f2d540831c67b6799ae9af8cd6a80d75b5f",
Sergiusz Bazanski65865332019-05-18 16:23:45 +0200126)
127
Sergiusz Bazanskia7e26cc2019-06-21 20:38:35 +0200128container_pull(
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200129 name = "gerrit-3.0.8",
Sergiusz Bazanskia7e26cc2019-06-21 20:38:35 +0200130 registry = "index.docker.io",
131 repository = "gerritcodereview/gerrit",
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200132 tag = "3.0.8-ubuntu18",
133 digest = "sha256:8f58236129e6547d92502a2e9d8f40129f45f15007beaeafb59fed4faffddb3e",
Sergiusz Bazanskia7e26cc2019-06-21 20:38:35 +0200134)
135
Sergiusz Bazanski65865332019-05-18 16:23:45 +0200136# HTTP stuff from the Internet
137load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_file")
Sergiusz Bazanskic2924102019-06-30 17:35:57 +0200138
Sergiusz Bazanski65865332019-05-18 16:23:45 +0200139http_file(
Sergiusz Bazanski644f9ff2019-05-19 03:09:47 +0200140 name = "factorio-headless-0.16.51",
Sergiusz Bazanski65865332019-05-18 16:23:45 +0200141 urls = ["https://factorio.com/get-download/0.16.51/headless/linux64"],
Sergiusz Bazanski44116ea2019-05-18 16:26:56 +0200142 sha256 = "6cb09f5ac87f16f8d5b43cef26c0ae26cc46a57a0382e253dfda032dc5bb367f",
143 downloaded_file_path = "factorio.tar.xz",
Sergiusz Bazanski3e597182019-04-19 14:40:47 +0200144)
Sergiusz Bazanskic2924102019-06-30 17:35:57 +0200145
Sergiusz Bazanski644f9ff2019-05-19 03:09:47 +0200146http_file(
147 name = "factorio-headless-0.17.41",
148 urls = ["https://factorio.com/get-download/0.17.41/headless/linux64"],
149 sha256 = "bf2d16b23c3bbd97e41889d3e27670b6d958fa3d50f0befb41d234f735e8e6d1",
150 downloaded_file_path = "factorio.tar.xz",
151)
Sergiusz Bazanski3e597182019-04-19 14:40:47 +0200152
Sergiusz Bazanskic2924102019-06-30 17:35:57 +0200153http_file(
154 name = "factorio-headless-0.17.52",
155 urls = ["https://factorio.com/get-download/0.17.52/headless/linux64"],
156 sha256 = "24458a4e16875b0b63677b7e7a068ce2e5b298c110381d17c6f596fd1406db0e",
157 downloaded_file_path = "factorio.tar.xz",
158)
159
Sergiusz Bazanski99371462020-01-14 13:47:26 +0100160http_file(
161 name = "factorio-headless-0.17.79",
162 urls = ["https://factorio.com/get-download/0.17.79/headless/linux64"],
163 sha256 = "9ace12fa986df028dc1851bf4de2cb038044d743e98823bc1c48ba21aa4d23df",
164 downloaded_file_path = "factorio.tar.xz",
165)
166
Sergiusz Bazanski54066392020-03-25 10:48:52 +0100167http_file(
168 name = "factorio-headless-0.18.12",
169 urls = ["https://factorio.com/get-download/0.18.12/headless/linux64"],
170 sha256 = "e0c6a46d66cfc02cba294a5fd34265e7e7a5168b8c8a7b16ad8dbac31470ed33",
171 downloaded_file_path = "factorio.tar.xz",
172)
173
Sergiusz Bazanski59786c52020-04-01 02:05:42 +0200174http_file(
175 name = "factorio-headless-0.18.17",
176 urls = ["https://factorio.com/get-download/0.18.17/headless/linux64"],
177 sha256 = "42adce9fddde393023afb0aae19dd030a32ca0810191c0e7b9b7c55556e9bbce",
178 downloaded_file_path = "factorio.tar.xz",
179)
180
Sergiusz Bazanski3e597182019-04-19 14:40:47 +0200181# Go rules
Sergiusz Bazanski07529712019-01-18 01:24:38 +0100182
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100183http_archive(
184 name = "io_bazel_rules_go",
Sergiusz Bazanski1cace132019-07-13 16:16:34 +0200185 urls = [
Sergiusz Bazanski4c0e9b52020-04-08 22:42:33 +0200186 "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.22.2/rules_go-v0.22.2.tar.gz",
187 "https://github.com/bazelbuild/rules_go/releases/download/v0.22.2/rules_go-v0.22.2.tar.gz",
Sergiusz Bazanski1cace132019-07-13 16:16:34 +0200188 ],
Sergiusz Bazanski4c0e9b52020-04-08 22:42:33 +0200189 sha256 = "142dd33e38b563605f0d20e89d9ef9eda0fc3cb539a14be1bdb1350de2eda659",
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100190)
191
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100192http_archive(
193 name = "bazel_gazelle",
Sergiusz Bazanskie03c2172020-02-15 01:04:38 +0100194 urls = [
195 "https://storage.googleapis.com/bazel-mirror/github.com/bazelbuild/bazel-gazelle/releases/download/v0.20.0/bazel-gazelle-v0.20.0.tar.gz",
196 "https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.20.0/bazel-gazelle-v0.20.0.tar.gz",
197 ],
198 sha256 = "d8c45ee70ec39a57e7a05e5027c32b1576cc7f16d9dd37135b0eddde45cf1b10",
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100199)
Sergiusz Bazanski8adbd492020-04-10 21:20:53 +0200200
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100201load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository")
202
Sergiusz Bazanski4c0e9b52020-04-08 22:42:33 +0200203go_repository(
204 name = "org_golang_x_net",
205 commit = "d3edc9973b7eb1fb302b0ff2c62357091cea9a30",
206 importpath = "golang.org/x/net",
207)
208
209# Invoke go_rules_dependencies depending on host platform.
210load("//tools:go_sdk.bzl", "gen_imports")
Sergiusz Bazanski8adbd492020-04-10 21:20:53 +0200211
Sergiusz Bazanski4c0e9b52020-04-08 22:42:33 +0200212gen_imports(name = "go_sdk_imports")
Sergiusz Bazanski8adbd492020-04-10 21:20:53 +0200213
Sergiusz Bazanski4c0e9b52020-04-08 22:42:33 +0200214load("@go_sdk_imports//:imports.bzl", "load_go_sdk")
Sergiusz Bazanski8adbd492020-04-10 21:20:53 +0200215
Sergiusz Bazanski4c0e9b52020-04-08 22:42:33 +0200216load_go_sdk()
217
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100218gazelle_dependencies()
219
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200220# For devtools/gerrit/gerrit-oauth-provider and gerrit OWNERS plugin
Sergiusz Bazanski573da782019-06-21 19:59:52 +0200221
222git_repository(
223 name = "com_googlesource_gerrit_bazlets",
224 remote = "https://gerrit.googlesource.com/bazlets",
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200225 commit = "1d381f01c853e2c02ae35430a8e294e485635d62",
Sergiusz Bazanski573da782019-06-21 19:59:52 +0200226)
227
228load(
229 "@com_googlesource_gerrit_bazlets//:gerrit_api.bzl",
230 "gerrit_api",
231)
232
233gerrit_api()
234
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200235load("@com_googlesource_gerrit_bazlets//tools:maven_jar.bzl", "maven_jar", "GERRIT")
236PROLOG_VERS = "1.4.3"
237JACKSON_VER = "2.9.7"
Sergiusz Bazanski573da782019-06-21 19:59:52 +0200238
239maven_jar(
240 name = "scribe",
241 artifact = "org.scribe:scribe:1.3.7",
242 sha1 = "583921bed46635d9f529ef5f14f7c9e83367bc6e",
243)
244
245maven_jar(
246 name = "commons-codec",
247 artifact = "commons-codec:commons-codec:1.4",
248 sha1 = "4216af16d38465bbab0f3dff8efa14204f7a399a",
249)
250
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200251maven_jar(
252 name = "jackson-core",
253 artifact = "com.fasterxml.jackson.core:jackson-core:" + JACKSON_VER,
254 sha1 = "4b7f0e0dc527fab032e9800ed231080fdc3ac015",
255)
256maven_jar(
257 name = "jackson-databind",
258 artifact = "com.fasterxml.jackson.core:jackson-databind:" + JACKSON_VER,
259 sha1 = "e6faad47abd3179666e89068485a1b88a195ceb7",
260)
261maven_jar(
262 name = "jackson-annotations",
263 artifact = "com.fasterxml.jackson.core:jackson-annotations:" + JACKSON_VER,
264 sha1 = "4b838e5c4fc17ac02f3293e9a558bb781a51c46d",
265)
266maven_jar(
267 name = "jackson-dataformat-yaml",
268 artifact = "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:" + JACKSON_VER,
269 sha1 = "a428edc4bb34a2da98a50eb759c26941d4e85960",
270)
271maven_jar(
272 name = "snakeyaml",
273 artifact = "org.yaml:snakeyaml:1.23",
274 sha1 = "ec62d74fe50689c28c0ff5b35d3aebcaa8b5be68",
275)
276
277maven_jar(
278 name = "prolog-runtime",
279 artifact = "com.googlecode.prolog-cafe:prolog-runtime:" + PROLOG_VERS,
280 attach_source = False,
281 repository = GERRIT,
282 sha1 = "d5206556cbc76ffeab21313ffc47b586a1efbcbb",
283)
284maven_jar(
285 name = "prolog-compiler",
286 artifact = "com.googlecode.prolog-cafe:prolog-compiler:" + PROLOG_VERS,
287 attach_source = False,
288 repository = GERRIT,
289 sha1 = "f37032cf1dec3e064427745bc59da5a12757a3b2",
290)
291maven_jar(
292 name = "prolog-io",
293 artifact = "com.googlecode.prolog-cafe:prolog-io:" + PROLOG_VERS,
294 attach_source = False,
295 repository = GERRIT,
296 sha1 = "d02b2640b26f64036b6ba2b45e4acc79281cea17",
297)
298
299# Gerrit OWNERS plugins external repositories
300
301git_repository(
302 name = "com_googlesource_gerrit_plugin_owners",
303 remote = "https://gerrit.googlesource.com/plugins/owners/",
304 commit = "5e691e87b8c00a04d261a8dd313f4d16c54797e8",
305)
306
Sergiusz Bazanski356ea8b2019-07-21 23:56:43 +0200307# For devtools/bazel-cache
308
309git_repository(
310 name = "com_github_buchgr_bazel_remote",
311 remote = "https://github.com/buchgr/bazel-remote.git",
312 commit = "a9374e638411da72a2ef2a83f490e61e2d74a976",
313)
314
315# Go image repos for Docker
316
317load(
318 "@io_bazel_rules_docker//go:image.bzl",
319 go_image_repositories = "repositories",
320)
321
322go_image_repositories()
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100323# Go repositories
324
325go_repository(
326 name = "io_k8s_kubernetes",
327 importpath = "k8s.io/kubernetes",
328 # Get from HTTP instead, this repository is _big_
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100329 urls = ["https://github.com/kubernetes/kubernetes/archive/v1.16.0.tar.gz"],
330 sha256 = "a8b2ee84ce38fa14404d7e56daa87aa2f2fb13e0114fb1150f294c992ab3f36c",
331 strip_prefix = "kubernetes-1.16.0",
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100332)
333
334go_repository(
Sergiusz Bazanski4a024bb2019-05-17 18:10:02 +0200335 name = "io_k8s_repo_infra",
336 commit = "df02ded38f9506e5bbcbf21702034b4fef815f2f",
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100337 importpath = "k8s.io/repo-infra",
338)
339
340go_repository(
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100341 name = "com_github_bitnami_kubecfg",
342 importpath = "github.com/bitnami/kubecfg",
343 vcs = "git",
344 commit = "dddf366990f581132cd046c723d73a2357de2dc8",
345 remote = "https://github.com/q3k/kubecfg",
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100346)
Sergiusz Bazanski07529712019-01-18 01:24:38 +0100347
348go_repository(
349 name = "com_github_projectcalico_calicoctl",
350 importpath = "github.com/projectcalico/calicoctl",
351 # This fork implements explicit Bazel rules
352 remote = "https://github.com/q3k/calicoctl",
353 vcs = "git",
354 commit = "1bc31862f07e7539ca493de9137ed1ad56cc9f43",
355 build_file_generation = "off",
356)
Sergiusz Bazanski9dc4b682019-04-05 23:51:49 +0200357
358go_repository(
359 name = "com_github_shirou_gopsutil",
360 commit = "2cbc9195c892b304060269ef280375236d2fcac9",
361 importpath = "github.com/shirou/gopsutil",
362)
Sergiusz Bazanskiacd001b2019-04-09 13:17:06 +0200363
364go_repository(
365 name = "com_github_cloudflare_cfssl",
366 commit = "768cd563887febaad559b511aaa5964823ccb4ab",
367 importpath = "github.com/cloudflare/cfssl",
368)
Sergiusz Bazanski258686c2019-05-01 12:26:43 +0200369
370go_repository(
371 name = "com_github_mattn_go_sqlite3",
372 commit = "5994cc52dfa89a4ee21ac891b06fbc1ea02c52d3",
373 importpath = "github.com/mattn/go-sqlite3",
374)
375
376go_repository(
377 name = "com_github_sebastiaanklippert_go_wkhtmltopdf",
378 commit = "72a7793efd38728796273861bb27d590cc33d9d4",
379 importpath = "github.com/sebastiaanklippert/go-wkhtmltopdf",
380)
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200381
382go_repository(
383 name = "com_github_ziutek_telnet",
384 commit = "c3b780dc415b28894076b4ec975ea3ea69e3980f",
385 importpath = "github.com/ziutek/telnet",
386)
387
388go_repository(
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200389 name = "com_github_digitalocean_go_netbox",
390 commit = "29433ec527e78486ea0a5758817ab672d977f90e",
391 importpath = "github.com/digitalocean/go-netbox",
392)
393
394go_repository(
395 name = "com_github_cenkalti_backoff",
396 commit = "4b4cebaf850ec58f1bb1fec5bdebdf8501c2bc3f",
397 importpath = "github.com/cenkalti/backoff",
398)
399
400go_repository(
401 name = "ml_vbom_util",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100402 commit = "db5cfe13f5cc",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200403 importpath = "vbom.ml/util",
404)
405
406go_repository(
407 name = "com_github_go_openapi_strfmt",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200408 importpath = "github.com/go-openapi/strfmt",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100409 tag = "v0.19.0",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200410)
411
412go_repository(
413 name = "com_github_go_openapi_swag",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200414 importpath = "github.com/go-openapi/swag",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100415 tag = "v0.19.5",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200416)
417
418go_repository(
419 name = "com_github_go_openapi_errors",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200420 importpath = "github.com/go-openapi/errors",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100421 tag = "v0.19.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200422)
423
424go_repository(
425 name = "com_github_go_openapi_runtime",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200426 importpath = "github.com/go-openapi/runtime",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100427 tag = "v0.19.0",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200428)
429
430go_repository(
431 name = "com_github_go_openapi_validate",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200432 importpath = "github.com/go-openapi/validate",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100433 tag = "v0.19.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200434)
435
436go_repository(
437 name = "com_github_mitchellh_mapstructure",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200438 importpath = "github.com/mitchellh/mapstructure",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100439 tag = "v1.1.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200440)
441
442go_repository(
443 name = "org_mongodb_go_mongo_driver",
444 commit = "9ec4480161a76f5267d56fc836b7f6d357fd9209",
445 importpath = "go.mongodb.org/mongo-driver",
446)
447
448go_repository(
449 name = "in_gopkg_yaml_v2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200450 importpath = "gopkg.in/yaml.v2",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100451 tag = "v2.2.4",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200452)
453
454go_repository(
455 name = "com_github_asaskevich_govalidator",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100456 commit = "f61b66f89f4a",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200457 importpath = "github.com/asaskevich/govalidator",
458)
459
460go_repository(
461 name = "com_github_go_openapi_spec",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200462 importpath = "github.com/go-openapi/spec",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100463 tag = "v0.19.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200464)
465
466go_repository(
467 name = "com_github_mailru_easyjson",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100468 commit = "b2ccc519800e",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200469 importpath = "github.com/mailru/easyjson",
470)
471
472go_repository(
473 name = "com_github_go_openapi_analysis",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200474 importpath = "github.com/go-openapi/analysis",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100475 tag = "v0.19.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200476)
477
478go_repository(
479 name = "com_github_go_openapi_jsonpointer",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200480 importpath = "github.com/go-openapi/jsonpointer",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100481 tag = "v0.19.3",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200482)
483
484go_repository(
485 name = "com_github_go_openapi_loads",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200486 importpath = "github.com/go-openapi/loads",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100487 tag = "v0.19.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200488)
489
490go_repository(
491 name = "com_github_go_openapi_jsonreference",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200492 importpath = "github.com/go-openapi/jsonreference",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100493 tag = "v0.19.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200494)
495
496go_repository(
497 name = "com_github_puerkitobio_purell",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200498 importpath = "github.com/PuerkitoBio/purell",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100499 tag = "v1.1.1",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200500)
501
502go_repository(
503 name = "com_github_puerkitobio_urlesc",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100504 commit = "de5bf2ad4578",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200505 importpath = "github.com/PuerkitoBio/urlesc",
506)
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200507
508go_repository(
509 name = "com_github_abbot_go_http_auth",
510 commit = "860ed7f246ff5abfdbd5c7ce618fd37b49fd3d86",
511 importpath = "github.com/abbot/go-http-auth",
512)
513
514go_repository(
515 name = "com_github_urfave_cli",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200516 importpath = "github.com/urfave/cli",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100517 tag = "v1.20.0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200518)
519
520go_repository(
521 name = "org_golang_x_crypto",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100522 commit = "60c769a6c586",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200523 importpath = "golang.org/x/crypto",
524)
525
526go_repository(
527 name = "org_golang_x_oauth2",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100528 commit = "0f29369cfe45",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200529 importpath = "golang.org/x/oauth2",
530)
531
532go_repository(
533 name = "com_github_djherbis_atime",
534 commit = "2d569978378562c466df74eda2d82900f435c5f4",
535 importpath = "github.com/djherbis/atime",
536)
537
538go_repository(
539 name = "com_google_cloud_go",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200540 importpath = "cloud.google.com/go",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100541 tag = "v0.38.0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200542)
543
544go_repository(
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200545 name = "com_github_stackexchange_wmi",
546 commit = "cbe66965904dbe8a6cd589e2298e5d8b986bd7dd",
547 importpath = "github.com/stackexchange/wmi",
548)
549
550go_repository(
551 name = "com_github_go_ole_go_ole",
552 commit = "938323a72016e9cf84fa5fba7635089efb0ad87f",
553 importpath = "github.com/go-ole/go-ole",
554)
555
556go_repository(
557 name = "com_github_dustin_go_humanize",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200558 importpath = "github.com/dustin/go-humanize",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100559 tag = "v1.0.0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200560)
561
562go_repository(
563 name = "io_k8s_client_go",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100564 commit = "0a8a1d7b7fae",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200565 importpath = "k8s.io/client-go",
566)
567
568go_repository(
569 name = "io_k8s_apimachinery",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200570 build_file_proto_mode = "disable",
Sergiusz Bazanski9d738ce2020-02-21 12:54:05 +0100571 commit = "731dcecc205498f52a21b12e311af095efb4b188",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100572 importpath = "k8s.io/apimachinery",
Sergiusz Bazanski9d738ce2020-02-21 12:54:05 +0100573 patches = ["//third_party/go/k8s-apimachinery:fix-kubernetes-bug-87675.patch"],
574 patch_args = ["-p1"],
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200575)
576
577go_repository(
578 name = "io_k8s_klog",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200579 importpath = "k8s.io/klog",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100580 tag = "v1.0.0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200581)
582
583go_repository(
584 name = "io_k8s_utils",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100585 commit = "e782cd3c129f",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200586 importpath = "k8s.io/utils",
587)
588
589go_repository(
590 name = "com_github_googleapis_gnostic",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100591 commit = "15cf44e552f9",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200592 importpath = "github.com/googleapis/gnostic",
593)
594
595go_repository(
596 name = "io_k8s_api",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200597 build_file_proto_mode = "disable",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100598 commit = "bbc9463b57e5",
599 importpath = "k8s.io/api",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200600)
601
602go_repository(
603 name = "org_golang_x_time",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100604 commit = "9d24e82272b4",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200605 importpath = "golang.org/x/time",
606)
607
608go_repository(
609 name = "com_github_google_gofuzz",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200610 importpath = "github.com/google/gofuzz",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100611 tag = "v1.0.0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200612)
613
614go_repository(
615 name = "io_k8s_sigs_yaml",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200616 importpath = "sigs.k8s.io/yaml",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100617 tag = "v1.1.0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200618)
619
620go_repository(
621 name = "com_github_modern_go_reflect2",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200622 importpath = "github.com/modern-go/reflect2",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100623 tag = "v1.0.1",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200624)
625
626go_repository(
627 name = "com_github_davecgh_go_spew",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200628 importpath = "github.com/davecgh/go-spew",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100629 tag = "v1.1.1",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200630)
631
632go_repository(
633 name = "com_github_json_iterator_go",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200634 importpath = "github.com/json-iterator/go",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100635 tag = "v1.1.8",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200636)
637
638go_repository(
639 name = "com_github_modern_go_concurrent",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100640 commit = "bacd9c7ef1dd",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200641 importpath = "github.com/modern-go/concurrent",
642)
643
644go_repository(
645 name = "in_gopkg_inf_v0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200646 importpath = "gopkg.in/inf.v0",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100647 tag = "v0.9.1",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200648)
Serge Bazanskib2d6b112019-07-30 13:07:04 +0200649
Serge Bazanskibeefe442019-07-30 13:03:03 +0200650go_repository(
651 name = "com_github_cloudflare_cfrpki",
652 commit = "adece784464315db69299ba75e9287c60cd95c69",
653 importpath = "github.com/cloudflare/cfrpki",
654)
655
656go_repository(
657 name = "com_github_prometheus_client_golang",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200658 importpath = "github.com/prometheus/client_golang",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100659 tag = "v1.0.0",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200660)
661
662go_repository(
663 name = "com_github_rs_cors",
664 commit = "db0fe48135e83b5812a5a31be0eea66984b1b521",
665 importpath = "github.com/rs/cors",
666)
667
668go_repository(
669 name = "com_github_cloudflare_gortr",
670 commit = "95270606e8853d9b93f5be46d656d08ec0a4ef09",
671 importpath = "github.com/cloudflare/gortr",
672)
673
674go_repository(
675 name = "com_github_gorilla_mux",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200676 importpath = "github.com/gorilla/mux",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100677 tag = "v1.6.2",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200678)
679
680go_repository(
681 name = "com_github_sirupsen_logrus",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200682 importpath = "github.com/sirupsen/logrus",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100683 tag = "v1.4.2",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200684)
685
686go_repository(
687 name = "com_github_prometheus_common",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200688 importpath = "github.com/prometheus/common",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100689 tag = "v0.4.1",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200690)
691
692go_repository(
693 name = "com_github_beorn7_perks",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200694 importpath = "github.com/beorn7/perks",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100695 tag = "v1.0.0",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200696)
697
698go_repository(
699 name = "com_github_prometheus_client_model",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100700 commit = "fd36f4220a90",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200701 importpath = "github.com/prometheus/client_model",
702)
703
704go_repository(
705 name = "com_github_prometheus_procfs",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200706 importpath = "github.com/prometheus/procfs",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100707 tag = "v0.0.2",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200708)
709
710go_repository(
711 name = "com_github_matttproud_golang_protobuf_extensions",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200712 importpath = "github.com/matttproud/golang_protobuf_extensions",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100713 tag = "v1.0.1",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200714)
Sergiusz Bazanski6eaaaf92019-08-02 01:25:31 +0200715
716go_repository(
Sergiusz Bazanski30317b42019-08-01 16:50:41 +0200717 name = "com_github_jmoiron_sqlx",
718 commit = "38398a30ed8516ffda617a04c822de09df8a3ec5",
719 importpath = "github.com/jmoiron/sqlx",
720)
721
722go_repository(
723 name = "com_github_lib_pq",
724 commit = "3427c32cb71afc948325f299f040e53c1dd78979",
725 importpath = "github.com/lib/pq",
726)
727
728go_repository(
729 name = "com_github_gchaincl_sqlhooks",
730 commit = "1932c8dd22f2283687586008bf2d58c2c5c014d0",
731 importpath = "github.com/gchaincl/sqlhooks",
732)
733
734go_repository(
735 name = "com_github_golang_migrate_migrate_v4",
736 commit = "e93eaeb3fe21ce2ccc1365277a01863e6bc84d9c",
737 importpath = "github.com/golang-migrate/migrate/v4",
738 remote = "https://github.com/golang-migrate/migrate",
739 vcs = "git",
740)
741
742go_repository(
743 name = "com_github_hashicorp_go_multierror",
744 commit = "bdca7bb83f603b80ef756bb953fe1dafa9cd00a2",
745 importpath = "github.com/hashicorp/go-multierror",
746)
747
748go_repository(
749 name = "com_github_hashicorp_errwrap",
750 commit = "8a6fb523712970c966eefc6b39ed2c5e74880354",
751 importpath = "github.com/hashicorp/errwrap",
752)
753
754go_repository(
755 name = "com_github_cockroachdb_cockroach_go",
756 commit = "e0a95dfd547cc9c3ebaaba1a12c2afe4bf621ac5",
757 importpath = "github.com/cockroachdb/cockroach-go",
758)
759
760go_repository(
761 name = "com_github_jackc_pgx",
762 commit = "6954c15ad0bd3c9aa6dd1b190732b020379beb28",
763 importpath = "github.com/jackc/pgx",
764)
765
766go_repository(
Sergiusz Bazanski6eaaaf92019-08-02 01:25:31 +0200767 name = "com_github_golang_collections_go_datastructures",
768 commit = "59788d5eb2591d3497ffb8fafed2f16fe00e7775",
769 importpath = "github.com/golang-collections/go-datastructures",
770)
771
772go_repository(
773 name = "com_github_go_test_deep",
774 commit = "cf67d735e69b4a4d50cdf571a92b0144786080f7",
775 importpath = "github.com/go-test/deep",
776)
Sergiusz Bazanski1fad2e52019-08-01 20:16:27 +0200777
778go_repository(
779 name = "com_github_sethvargo_go_password",
780 commit = "68ac5879751a7105834296859f8c1bf70b064675",
781 importpath = "github.com/sethvargo/go-password",
782)
Sergiusz Bazanskib13b7ff2019-08-29 20:12:24 +0200783
784go_repository(
785 name = "in_gopkg_ldap_v3",
786 commit = "9f0d712775a0973b7824a1585a86a4ea1d5263d9",
787 importpath = "gopkg.in/ldap.v3",
788)
789
790go_repository(
791 name = "in_gopkg_asn1_ber_v1",
792 commit = "f715ec2f112d1e4195b827ad68cf44017a3ef2b1",
793 importpath = "gopkg.in/asn1-ber.v1",
794)
Sergiusz Bazanski47b7e852019-09-26 18:32:39 +0200795
796go_repository(
797 name = "com_github_q3k_cursedjsonrpc",
798 commit = "304f0561c9162a2696f3ae7c96f3404324177ab8",
799 importpath = "github.com/q3k/cursedjsonrpc",
800)
801
802go_repository(
803 name = "com_github_q3k_cursedjson",
804 commit = "af0e3abb1bcef7197b3b9f91d7d094e6528a2d05",
805 importpath = "github.com/q3k/cursedjson",
806)
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100807
808go_repository(
809 name = "co_honnef_go_tools",
810 commit = "ea95bdfd59fc",
811 importpath = "honnef.co/go/tools",
812)
813
814go_repository(
815 name = "com_github_azure_go_ansiterm",
816 commit = "d6e3b3328b78",
817 importpath = "github.com/Azure/go-ansiterm",
818)
819
820go_repository(
821 name = "com_github_azure_go_autorest",
822 importpath = "github.com/Azure/go-autorest",
823 tag = "v11.5.0",
824)
825
826local_repository(
827 name = "com_github_census_instrumentation_opencensus_proto",
828 path = "./third_party/go/opencensus-proto",
829)
830
831go_repository(
832 name = "com_github_client9_misspell",
833 importpath = "github.com/client9/misspell",
834 tag = "v0.3.4",
835)
836
837go_repository(
838 name = "com_github_containerd_continuity",
839 commit = "7f53d412b9eb",
840 importpath = "github.com/containerd/continuity",
841)
842
843go_repository(
844 name = "com_github_coreos_clair",
845 commit = "44ae4bc9590a",
846 importpath = "github.com/coreos/clair",
847)
848
849go_repository(
850 name = "com_github_dgrijalva_jwt_go",
851 importpath = "github.com/dgrijalva/jwt-go",
852 tag = "v3.2.0",
853)
854
855go_repository(
856 name = "com_github_docker_cli",
857 commit = "54c19e67f69c",
858 importpath = "github.com/docker/cli",
859)
860
861go_repository(
862 name = "com_github_docker_distribution",
863 importpath = "github.com/docker/distribution",
864 tag = "v2.7.1",
865)
866
867go_repository(
868 name = "com_github_docker_docker",
869 commit = "be7ac8be2ae0",
870 importpath = "github.com/docker/docker",
871)
872
873go_repository(
874 name = "com_github_docker_docker_ce",
875 commit = "f53bd8bb8e43",
876 importpath = "github.com/docker/docker-ce",
877)
878
879go_repository(
880 name = "com_github_docker_docker_credential_helpers",
881 importpath = "github.com/docker/docker-credential-helpers",
882 tag = "v0.6.1",
883)
884
885go_repository(
886 name = "com_github_docker_go_connections",
887 commit = "97c2040d34df",
888 importpath = "github.com/docker/go-connections",
889)
890
891go_repository(
892 name = "com_github_docker_go_metrics",
893 commit = "399ea8c73916",
894 importpath = "github.com/docker/go-metrics",
895)
896
897go_repository(
898 name = "com_github_docker_go_units",
899 importpath = "github.com/docker/go-units",
900 tag = "v0.3.3",
901)
902
903go_repository(
904 name = "com_github_docker_libtrust",
905 commit = "aabc10ec26b7",
906 importpath = "github.com/docker/libtrust",
907)
908
909go_repository(
910 name = "com_github_elazarl_go_bindata_assetfs",
911 commit = "38087fe4dafb",
912 importpath = "github.com/elazarl/go-bindata-assetfs",
913)
914
915go_repository(
916 name = "com_github_evanphx_json_patch",
917 importpath = "github.com/evanphx/json-patch",
918 tag = "v4.2.0",
919)
920
921go_repository(
922 name = "com_github_fernet_fernet_go",
923 commit = "9eac43b88a5e",
924 importpath = "github.com/fernet/fernet-go",
925)
926
927go_repository(
928 name = "com_github_fsnotify_fsnotify",
929 importpath = "github.com/fsnotify/fsnotify",
930 tag = "v1.4.7",
931)
932
933go_repository(
934 name = "com_github_genuinetools_pkg",
935 commit = "1c141f661797",
936 importpath = "github.com/genuinetools/pkg",
937)
938
939go_repository(
940 name = "com_github_genuinetools_reg",
941 commit = "d959057b30da",
942 importpath = "github.com/genuinetools/reg",
943)
944
945go_repository(
946 name = "com_github_ghodss_yaml",
947 importpath = "github.com/ghodss/yaml",
948 tag = "v1.0.0",
949)
950
951go_repository(
952 name = "com_github_gogo_protobuf",
953 commit = "65acae22fc9d",
954 importpath = "github.com/gogo/protobuf",
955)
956
957go_repository(
958 name = "com_github_golang_glog",
959 commit = "23def4e6c14b",
960 importpath = "github.com/golang/glog",
961)
962
963go_repository(
964 name = "com_github_golang_mock",
965 importpath = "github.com/golang/mock",
966 tag = "v1.2.0",
967)
968
969go_repository(
970 name = "com_github_golang_protobuf",
971 importpath = "github.com/golang/protobuf",
972 tag = "v1.3.2",
973)
974
975go_repository(
976 name = "com_github_google_btree",
977 importpath = "github.com/google/btree",
978 tag = "v1.0.0",
979)
980
981go_repository(
982 name = "com_github_google_go_cmp",
983 importpath = "github.com/google/go-cmp",
984 tag = "v0.3.0",
985)
986
987go_repository(
988 name = "com_github_google_go_jsonnet",
989 importpath = "github.com/google/go-jsonnet",
990 tag = "v0.12.1",
991)
992
993go_repository(
994 name = "com_github_gophercloud_gophercloud",
995 importpath = "github.com/gophercloud/gophercloud",
996 tag = "v0.1.0",
997)
998
999go_repository(
1000 name = "com_github_gorilla_context",
1001 importpath = "github.com/gorilla/context",
1002 tag = "v1.1.1",
1003)
1004
1005go_repository(
1006 name = "com_github_gregjones_httpcache",
1007 commit = "9cad4c3443a7",
1008 importpath = "github.com/gregjones/httpcache",
1009)
1010
1011go_repository(
1012 name = "com_github_grpc_ecosystem_grpc_gateway",
1013 importpath = "github.com/grpc-ecosystem/grpc-gateway",
1014 tag = "v1.9.5",
1015)
1016
1017go_repository(
1018 name = "com_github_hpcloud_tail",
1019 importpath = "github.com/hpcloud/tail",
1020 tag = "v1.0.0",
1021)
1022
1023go_repository(
1024 name = "com_github_imdario_mergo",
1025 importpath = "github.com/imdario/mergo",
1026 tag = "v0.3.5",
1027)
1028
1029go_repository(
1030 name = "com_github_inconshreveable_mousetrap",
1031 importpath = "github.com/inconshreveable/mousetrap",
1032 tag = "v1.0.0",
1033)
1034
1035go_repository(
1036 name = "com_github_kisielk_gotool",
1037 importpath = "github.com/kisielk/gotool",
1038 tag = "v1.0.0",
1039)
1040
1041go_repository(
1042 name = "com_github_kr_pretty",
1043 importpath = "github.com/kr/pretty",
1044 tag = "v0.1.0",
1045)
1046
1047go_repository(
1048 name = "com_github_kr_pty",
1049 importpath = "github.com/kr/pty",
1050 tag = "v1.1.5",
1051)
1052
1053go_repository(
1054 name = "com_github_kr_text",
1055 importpath = "github.com/kr/text",
1056 tag = "v0.1.0",
1057)
1058
1059go_repository(
1060 name = "com_github_mattn_go_isatty",
1061 importpath = "github.com/mattn/go-isatty",
1062 tag = "v0.0.4",
1063)
1064
1065go_repository(
1066 name = "com_github_microsoft_go_winio",
1067 importpath = "github.com/Microsoft/go-winio",
1068 tag = "v0.4.11",
1069)
1070
1071go_repository(
1072 name = "com_github_mitchellh_go_wordwrap",
1073 importpath = "github.com/mitchellh/go-wordwrap",
1074 tag = "v1.0.0",
1075)
1076
1077go_repository(
1078 name = "com_github_nvveen_gotty",
1079 commit = "cd527374f1e5",
1080 importpath = "github.com/Nvveen/Gotty",
1081)
1082
1083go_repository(
1084 name = "com_github_onsi_ginkgo",
1085 importpath = "github.com/onsi/ginkgo",
1086 tag = "v1.10.1",
1087)
1088
1089go_repository(
1090 name = "com_github_onsi_gomega",
1091 importpath = "github.com/onsi/gomega",
1092 tag = "v1.7.0",
1093)
1094
1095go_repository(
1096 name = "com_github_opencontainers_go_digest",
1097 importpath = "github.com/opencontainers/go-digest",
1098 tag = "v1.0.0-rc1",
1099)
1100
1101go_repository(
1102 name = "com_github_opencontainers_image_spec",
1103 importpath = "github.com/opencontainers/image-spec",
1104 tag = "v1.0.1",
1105)
1106
1107go_repository(
1108 name = "com_github_opencontainers_runc",
1109 importpath = "github.com/opencontainers/runc",
1110 tag = "v0.1.1",
1111)
1112
1113go_repository(
1114 name = "com_github_openzipkin_zipkin_go",
1115 importpath = "github.com/openzipkin/zipkin-go",
1116 tag = "v0.1.3",
1117)
1118
1119go_repository(
1120 name = "com_github_peterbourgon_diskv",
1121 importpath = "github.com/peterbourgon/diskv",
1122 tag = "v2.0.1",
1123)
1124
1125go_repository(
1126 name = "com_github_peterhellberg_link",
1127 importpath = "github.com/peterhellberg/link",
1128 tag = "v1.0.0",
1129)
1130
1131go_repository(
1132 name = "com_github_pkg_errors",
1133 importpath = "github.com/pkg/errors",
1134 tag = "v0.8.1",
1135)
1136
1137go_repository(
1138 name = "com_github_pmezard_go_difflib",
1139 importpath = "github.com/pmezard/go-difflib",
1140 tag = "v1.0.0",
1141)
1142
1143go_repository(
1144 name = "com_github_sergi_go_diff",
1145 commit = "feef008d51ad",
1146 importpath = "github.com/sergi/go-diff",
1147)
1148
1149go_repository(
1150 name = "com_github_shurcool_httpfs",
1151 commit = "809beceb2371",
1152 importpath = "github.com/shurcooL/httpfs",
1153)
1154
1155go_repository(
1156 name = "com_github_spf13_cobra",
1157 importpath = "github.com/spf13/cobra",
1158 tag = "v0.0.5",
1159)
1160
1161go_repository(
1162 name = "com_github_spf13_pflag",
1163 importpath = "github.com/spf13/pflag",
1164 tag = "v1.0.5",
1165)
1166
1167go_repository(
1168 name = "com_github_stretchr_objx",
1169 importpath = "github.com/stretchr/objx",
1170 tag = "v0.2.0",
1171)
1172
1173go_repository(
1174 name = "com_github_stretchr_testify",
1175 importpath = "github.com/stretchr/testify",
1176 tag = "v1.3.0",
1177)
1178
1179go_repository(
1180 name = "in_gopkg_airbrake_gobrake_v2",
1181 importpath = "gopkg.in/airbrake/gobrake.v2",
1182 tag = "v2.0.9",
1183)
1184
1185go_repository(
1186 name = "in_gopkg_check_v1",
1187 commit = "788fd7840127",
1188 importpath = "gopkg.in/check.v1",
1189)
1190
1191go_repository(
1192 name = "in_gopkg_fsnotify_v1",
1193 importpath = "gopkg.in/fsnotify.v1",
1194 tag = "v1.4.7",
1195)
1196
1197go_repository(
1198 name = "in_gopkg_gemnasium_logrus_airbrake_hook_v2",
1199 importpath = "gopkg.in/gemnasium/logrus-airbrake-hook.v2",
1200 tag = "v2.1.2",
1201)
1202
1203go_repository(
1204 name = "in_gopkg_tomb_v1",
1205 commit = "dd632973f1e7",
1206 importpath = "gopkg.in/tomb.v1",
1207)
1208
1209go_repository(
1210 name = "io_k8s_apiextensions_apiserver",
1211 build_file_proto_mode = "disable",
1212 commit = "b615a37f53e7",
1213 importpath = "k8s.io/apiextensions-apiserver",
1214)
1215
1216go_repository(
1217 name = "io_k8s_kube_openapi",
1218 commit = "30be4d16710a",
1219 importpath = "k8s.io/kube-openapi",
1220)
1221
1222go_repository(
1223 name = "io_opencensus_go",
1224 importpath = "go.opencensus.io",
1225 tag = "v0.21.0",
1226)
1227
1228go_repository(
1229 name = "io_opencensus_go_contrib_exporter_ocagent",
1230 importpath = "contrib.go.opencensus.io/exporter/ocagent",
1231 tag = "v0.6.0",
1232)
1233
1234go_repository(
1235 name = "org_apache_git_thrift_git",
1236 commit = "9b75e4fe745a",
1237 importpath = "git.apache.org/thrift.git",
1238)
1239
1240go_repository(
1241 name = "org_golang_google_api",
1242 importpath = "google.golang.org/api",
1243 tag = "v0.4.0",
1244)
1245
1246go_repository(
1247 name = "org_golang_google_appengine",
1248 importpath = "google.golang.org/appengine",
1249 tag = "v1.5.0",
1250)
1251
1252go_repository(
1253 name = "org_golang_google_genproto",
1254 commit = "54afdca5d873",
1255 importpath = "google.golang.org/genproto",
1256)
1257
1258go_repository(
1259 name = "org_golang_google_grpc",
1260 importpath = "google.golang.org/grpc",
1261 tag = "v1.23.1",
1262)
1263
1264go_repository(
1265 name = "org_golang_x_lint",
1266 commit = "d0100b6bd8b3",
1267 importpath = "golang.org/x/lint",
1268)
1269
1270go_repository(
1271 name = "org_golang_x_sync",
1272 commit = "112230192c58",
1273 importpath = "golang.org/x/sync",
1274)
1275
1276go_repository(
1277 name = "org_golang_x_sys",
1278 commit = "c7b8b68b1456",
1279 importpath = "golang.org/x/sys",
1280)
1281
1282go_repository(
1283 name = "org_golang_x_text",
1284 importpath = "golang.org/x/text",
1285 tag = "v0.3.2",
1286)
1287
1288go_repository(
1289 name = "org_golang_x_tools",
1290 commit = "5eefd052ad72",
1291 importpath = "golang.org/x/tools",
1292)
1293
1294go_repository(
1295 name = "tools_gotest",
1296 importpath = "gotest.tools",
1297 tag = "v2.2.0",
1298)
1299
1300go_repository(
1301 name = "com_github_alecthomas_template",
1302 commit = "a0175ee3bccc",
1303 importpath = "github.com/alecthomas/template",
1304)
1305
1306go_repository(
1307 name = "com_github_alecthomas_units",
1308 commit = "2efee857e7cf",
1309 importpath = "github.com/alecthomas/units",
1310)
1311
1312go_repository(
1313 name = "com_github_armon_consul_api",
1314 commit = "eb2c6b5be1b6",
1315 importpath = "github.com/armon/consul-api",
1316)
1317
1318go_repository(
1319 name = "com_github_azure_go_autorest_autorest",
1320 importpath = "github.com/Azure/go-autorest/autorest",
1321 tag = "v0.9.0",
1322)
1323
1324go_repository(
1325 name = "com_github_azure_go_autorest_autorest_adal",
1326 importpath = "github.com/Azure/go-autorest/autorest/adal",
1327 tag = "v0.5.0",
1328)
1329
1330go_repository(
1331 name = "com_github_azure_go_autorest_autorest_date",
1332 importpath = "github.com/Azure/go-autorest/autorest/date",
1333 tag = "v0.1.0",
1334)
1335
1336go_repository(
1337 name = "com_github_azure_go_autorest_autorest_mocks",
1338 importpath = "github.com/Azure/go-autorest/autorest/mocks",
1339 tag = "v0.2.0",
1340)
1341
1342go_repository(
1343 name = "com_github_azure_go_autorest_logger",
1344 importpath = "github.com/Azure/go-autorest/logger",
1345 tag = "v0.1.0",
1346)
1347
1348go_repository(
1349 name = "com_github_azure_go_autorest_tracing",
1350 importpath = "github.com/Azure/go-autorest/tracing",
1351 tag = "v0.5.0",
1352)
1353
1354go_repository(
1355 name = "com_github_bgentry_speakeasy",
1356 importpath = "github.com/bgentry/speakeasy",
1357 tag = "v0.1.0",
1358)
1359
1360go_repository(
1361 name = "com_github_blang_semver",
1362 importpath = "github.com/blang/semver",
1363 tag = "v3.5.0",
1364)
1365
1366go_repository(
1367 name = "com_github_burntsushi_toml",
1368 importpath = "github.com/BurntSushi/toml",
1369 tag = "v0.3.1",
1370)
1371
1372go_repository(
1373 name = "com_github_burntsushi_xgb",
1374 commit = "27f122750802",
1375 importpath = "github.com/BurntSushi/xgb",
1376)
1377
1378go_repository(
1379 name = "com_github_chai2010_gettext_go",
1380 commit = "c6fed771bfd5",
1381 importpath = "github.com/chai2010/gettext-go",
1382)
1383
1384go_repository(
1385 name = "com_github_cockroachdb_datadriven",
1386 commit = "80d97fb3cbaa",
1387 importpath = "github.com/cockroachdb/datadriven",
1388)
1389
1390go_repository(
1391 name = "com_github_coreos_etcd",
1392 importpath = "github.com/coreos/etcd",
1393 tag = "v3.3.10",
1394)
1395
1396go_repository(
1397 name = "com_github_coreos_go_etcd",
1398 importpath = "github.com/coreos/go-etcd",
1399 tag = "v2.0.0",
1400)
1401
1402go_repository(
1403 name = "com_github_coreos_go_oidc",
1404 importpath = "github.com/coreos/go-oidc",
1405 tag = "v2.1.0",
1406)
1407
1408go_repository(
1409 name = "com_github_coreos_go_semver",
1410 importpath = "github.com/coreos/go-semver",
1411 tag = "v0.3.0",
1412)
1413
1414go_repository(
1415 name = "com_github_coreos_go_systemd",
1416 commit = "95778dfbb74e",
1417 importpath = "github.com/coreos/go-systemd",
1418)
1419
1420go_repository(
1421 name = "com_github_coreos_pkg",
1422 commit = "97fdf19511ea",
1423 importpath = "github.com/coreos/pkg",
1424)
1425
1426go_repository(
1427 name = "com_github_cpuguy83_go_md2man",
1428 importpath = "github.com/cpuguy83/go-md2man",
1429 tag = "v1.0.10",
1430)
1431
1432go_repository(
1433 name = "com_github_creack_pty",
1434 importpath = "github.com/creack/pty",
1435 tag = "v1.1.7",
1436)
1437
1438go_repository(
1439 name = "com_github_daviddengcn_go_colortext",
1440 commit = "511bcaf42ccd",
1441 importpath = "github.com/daviddengcn/go-colortext",
1442)
1443
1444go_repository(
1445 name = "com_github_docker_spdystream",
1446 commit = "449fdfce4d96",
1447 importpath = "github.com/docker/spdystream",
1448)
1449
1450go_repository(
1451 name = "com_github_elazarl_goproxy",
1452 commit = "c4fc26588b6e",
1453 importpath = "github.com/elazarl/goproxy",
1454)
1455
1456go_repository(
1457 name = "com_github_emicklei_go_restful",
1458 importpath = "github.com/emicklei/go-restful",
1459 tag = "v2.9.5",
1460)
1461
1462go_repository(
1463 name = "com_github_exponent_io_jsonpath",
1464 commit = "d6023ce2651d",
1465 importpath = "github.com/exponent-io/jsonpath",
1466)
1467
1468go_repository(
1469 name = "com_github_fatih_camelcase",
1470 importpath = "github.com/fatih/camelcase",
1471 tag = "v1.0.0",
1472)
1473
1474go_repository(
1475 name = "com_github_fatih_color",
1476 importpath = "github.com/fatih/color",
1477 tag = "v1.7.0",
1478)
1479
1480go_repository(
1481 name = "com_github_globalsign_mgo",
1482 commit = "eeefdecb41b8",
1483 importpath = "github.com/globalsign/mgo",
1484)
1485
1486go_repository(
1487 name = "com_github_go_kit_kit",
1488 importpath = "github.com/go-kit/kit",
1489 tag = "v0.8.0",
1490)
1491
1492go_repository(
1493 name = "com_github_go_logfmt_logfmt",
1494 importpath = "github.com/go-logfmt/logfmt",
1495 tag = "v0.3.0",
1496)
1497
1498go_repository(
1499 name = "com_github_go_logr_logr",
1500 importpath = "github.com/go-logr/logr",
1501 tag = "v0.1.0",
1502)
1503
1504go_repository(
1505 name = "com_github_go_stack_stack",
1506 importpath = "github.com/go-stack/stack",
1507 tag = "v1.8.0",
1508)
1509
1510go_repository(
1511 name = "com_github_golang_groupcache",
1512 commit = "02826c3e7903",
1513 importpath = "github.com/golang/groupcache",
1514)
1515
1516go_repository(
1517 name = "com_github_golangplus_bytes",
1518 commit = "45c989fe5450",
1519 importpath = "github.com/golangplus/bytes",
1520)
1521
1522go_repository(
1523 name = "com_github_golangplus_fmt",
1524 commit = "2a5d6d7d2995",
1525 importpath = "github.com/golangplus/fmt",
1526)
1527
1528go_repository(
1529 name = "com_github_golangplus_testing",
1530 commit = "af21d9c3145e",
1531 importpath = "github.com/golangplus/testing",
1532)
1533
1534go_repository(
1535 name = "com_github_google_martian",
1536 importpath = "github.com/google/martian",
1537 tag = "v2.1.0",
1538)
1539
1540go_repository(
1541 name = "com_github_google_pprof",
1542 commit = "3ea8567a2e57",
1543 importpath = "github.com/google/pprof",
1544)
1545
1546go_repository(
1547 name = "com_github_google_uuid",
1548 importpath = "github.com/google/uuid",
1549 tag = "v1.1.1",
1550)
1551
1552go_repository(
1553 name = "com_github_googleapis_gax_go_v2",
1554 importpath = "github.com/googleapis/gax-go/v2",
1555 tag = "v2.0.4",
1556)
1557
1558go_repository(
1559 name = "com_github_gorilla_websocket",
1560 importpath = "github.com/gorilla/websocket",
1561 tag = "v1.4.0",
1562)
1563
1564go_repository(
1565 name = "com_github_grpc_ecosystem_go_grpc_middleware",
1566 commit = "f849b5445de4",
1567 importpath = "github.com/grpc-ecosystem/go-grpc-middleware",
1568)
1569
1570go_repository(
1571 name = "com_github_grpc_ecosystem_go_grpc_prometheus",
1572 importpath = "github.com/grpc-ecosystem/go-grpc-prometheus",
1573 tag = "v1.2.0",
1574)
1575
1576go_repository(
1577 name = "com_github_hashicorp_golang_lru",
1578 importpath = "github.com/hashicorp/golang-lru",
1579 tag = "v0.5.1",
1580)
1581
1582go_repository(
1583 name = "com_github_hashicorp_hcl",
1584 importpath = "github.com/hashicorp/hcl",
1585 tag = "v1.0.0",
1586)
1587
1588go_repository(
1589 name = "com_github_jonboulle_clockwork",
1590 importpath = "github.com/jonboulle/clockwork",
1591 tag = "v0.1.0",
1592)
1593
1594go_repository(
1595 name = "com_github_jstemmer_go_junit_report",
1596 commit = "af01ea7f8024",
1597 importpath = "github.com/jstemmer/go-junit-report",
1598)
1599
1600go_repository(
1601 name = "com_github_julienschmidt_httprouter",
1602 importpath = "github.com/julienschmidt/httprouter",
1603 tag = "v1.2.0",
1604)
1605
1606go_repository(
1607 name = "com_github_kisielk_errcheck",
1608 importpath = "github.com/kisielk/errcheck",
1609 tag = "v1.2.0",
1610)
1611
1612go_repository(
1613 name = "com_github_konsorten_go_windows_terminal_sequences",
1614 importpath = "github.com/konsorten/go-windows-terminal-sequences",
1615 tag = "v1.0.1",
1616)
1617
1618go_repository(
1619 name = "com_github_kr_logfmt",
1620 commit = "b84e30acd515",
1621 importpath = "github.com/kr/logfmt",
1622)
1623
1624go_repository(
1625 name = "com_github_liggitt_tabwriter",
1626 commit = "89fcab3d43de",
1627 importpath = "github.com/liggitt/tabwriter",
1628)
1629
1630go_repository(
1631 name = "com_github_lithammer_dedent",
1632 importpath = "github.com/lithammer/dedent",
1633 tag = "v1.1.0",
1634)
1635
1636go_repository(
1637 name = "com_github_magiconair_properties",
1638 importpath = "github.com/magiconair/properties",
1639 tag = "v1.8.0",
1640)
1641
1642go_repository(
1643 name = "com_github_makenowjust_heredoc",
1644 commit = "bb23615498cd",
1645 importpath = "github.com/MakeNowJust/heredoc",
1646)
1647
1648go_repository(
1649 name = "com_github_mattn_go_colorable",
1650 importpath = "github.com/mattn/go-colorable",
1651 tag = "v0.0.9",
1652)
1653
1654go_repository(
1655 name = "com_github_mattn_go_runewidth",
1656 importpath = "github.com/mattn/go-runewidth",
1657 tag = "v0.0.2",
1658)
1659
1660go_repository(
1661 name = "com_github_mitchellh_go_homedir",
1662 importpath = "github.com/mitchellh/go-homedir",
1663 tag = "v1.1.0",
1664)
1665
1666go_repository(
1667 name = "com_github_morikuni_aec",
1668 importpath = "github.com/morikuni/aec",
1669 tag = "v1.0.0",
1670)
1671
1672go_repository(
1673 name = "com_github_munnerz_goautoneg",
1674 commit = "a7dc8b61c822",
1675 importpath = "github.com/munnerz/goautoneg",
1676)
1677
1678go_repository(
1679 name = "com_github_mwitkow_go_conntrack",
1680 commit = "cc309e4a2223",
1681 importpath = "github.com/mwitkow/go-conntrack",
1682)
1683
1684go_repository(
1685 name = "com_github_mxk_go_flowrate",
1686 commit = "cca7078d478f",
1687 importpath = "github.com/mxk/go-flowrate",
1688)
1689
1690go_repository(
1691 name = "com_github_nytimes_gziphandler",
1692 commit = "56545f4a5d46",
1693 importpath = "github.com/NYTimes/gziphandler",
1694)
1695
1696go_repository(
1697 name = "com_github_olekukonko_tablewriter",
1698 commit = "a0225b3f23b5",
1699 importpath = "github.com/olekukonko/tablewriter",
1700)
1701
1702go_repository(
1703 name = "com_github_pelletier_go_toml",
1704 importpath = "github.com/pelletier/go-toml",
1705 tag = "v1.2.0",
1706)
1707
1708go_repository(
1709 name = "com_github_pquerna_cachecontrol",
1710 commit = "0dec1b30a021",
1711 importpath = "github.com/pquerna/cachecontrol",
1712)
1713
1714go_repository(
1715 name = "com_github_remyoudompheng_bigfft",
1716 commit = "52369c62f446",
1717 importpath = "github.com/remyoudompheng/bigfft",
1718)
1719
1720go_repository(
1721 name = "com_github_rogpeppe_fastuuid",
1722 commit = "6724a57986af",
1723 importpath = "github.com/rogpeppe/fastuuid",
1724)
1725
1726go_repository(
1727 name = "com_github_russross_blackfriday",
1728 importpath = "github.com/russross/blackfriday",
1729 tag = "v1.5.2",
1730)
1731
1732go_repository(
1733 name = "com_github_soheilhy_cmux",
1734 importpath = "github.com/soheilhy/cmux",
1735 tag = "v0.1.4",
1736)
1737
1738go_repository(
1739 name = "com_github_spf13_afero",
1740 importpath = "github.com/spf13/afero",
1741 tag = "v1.2.2",
1742)
1743
1744go_repository(
1745 name = "com_github_spf13_cast",
1746 importpath = "github.com/spf13/cast",
1747 tag = "v1.3.0",
1748)
1749
1750go_repository(
1751 name = "com_github_spf13_jwalterweatherman",
1752 importpath = "github.com/spf13/jwalterweatherman",
1753 tag = "v1.0.0",
1754)
1755
1756go_repository(
1757 name = "com_github_spf13_viper",
1758 importpath = "github.com/spf13/viper",
1759 tag = "v1.3.2",
1760)
1761
1762go_repository(
1763 name = "com_github_tmc_grpc_websocket_proxy",
1764 commit = "89b8d40f7ca8",
1765 importpath = "github.com/tmc/grpc-websocket-proxy",
1766)
1767
1768go_repository(
1769 name = "com_github_ugorji_go_codec",
1770 commit = "d75b2dcb6bc8",
1771 importpath = "github.com/ugorji/go/codec",
1772)
1773
1774go_repository(
1775 name = "com_github_xiang90_probing",
1776 commit = "43a291ad63a2",
1777 importpath = "github.com/xiang90/probing",
1778)
1779
1780go_repository(
1781 name = "com_github_xlab_handysort",
1782 commit = "fb3537ed64a1",
1783 importpath = "github.com/xlab/handysort",
1784)
1785
1786go_repository(
1787 name = "com_github_xordataexchange_crypt",
1788 commit = "b2862e3d0a77",
1789 importpath = "github.com/xordataexchange/crypt",
1790)
1791
1792go_repository(
1793 name = "in_gopkg_alecthomas_kingpin_v2",
1794 importpath = "gopkg.in/alecthomas/kingpin.v2",
1795 tag = "v2.2.6",
1796)
1797
1798go_repository(
1799 name = "in_gopkg_cheggaaa_pb_v1",
1800 importpath = "gopkg.in/cheggaaa/pb.v1",
1801 tag = "v1.0.25",
1802)
1803
1804go_repository(
1805 name = "in_gopkg_natefinch_lumberjack_v2",
1806 importpath = "gopkg.in/natefinch/lumberjack.v2",
1807 tag = "v2.0.0",
1808)
1809
1810go_repository(
1811 name = "in_gopkg_resty_v1",
1812 importpath = "gopkg.in/resty.v1",
1813 tag = "v1.12.0",
1814)
1815
1816go_repository(
1817 name = "in_gopkg_square_go_jose_v2",
1818 importpath = "gopkg.in/square/go-jose.v2",
1819 tag = "v2.2.2",
1820)
1821
1822go_repository(
1823 name = "io_etcd_go_bbolt",
1824 importpath = "go.etcd.io/bbolt",
1825 tag = "v1.3.3",
1826)
1827
1828go_repository(
1829 name = "io_etcd_go_etcd",
1830 commit = "3cf2f69b5738",
1831 importpath = "go.etcd.io/etcd",
1832)
1833
1834go_repository(
1835 name = "io_k8s_apiserver",
1836 commit = "f2537b84c964",
1837 importpath = "k8s.io/apiserver",
1838)
1839
1840go_repository(
1841 name = "io_k8s_cli_runtime",
1842 commit = "ec04ad4dbd24",
1843 importpath = "k8s.io/cli-runtime",
1844)
1845
1846go_repository(
1847 name = "io_k8s_code_generator",
1848 commit = "2a85f169f05f",
1849 importpath = "k8s.io/code-generator",
1850)
1851
1852go_repository(
1853 name = "io_k8s_component_base",
1854 commit = "ea09a2678486",
1855 importpath = "k8s.io/component-base",
1856)
1857
1858go_repository(
1859 name = "io_k8s_gengo",
1860 commit = "26a664648505",
1861 importpath = "k8s.io/gengo",
1862)
1863
1864go_repository(
1865 name = "io_k8s_kubectl",
1866 commit = "fbc5d36fee2d",
1867 importpath = "k8s.io/kubectl",
1868)
1869
1870go_repository(
1871 name = "io_k8s_metrics",
1872 commit = "dea8d0e6b550",
1873 importpath = "k8s.io/metrics",
1874)
1875
1876go_repository(
1877 name = "io_k8s_sigs_kustomize",
1878 importpath = "sigs.k8s.io/kustomize",
1879 tag = "v2.0.3",
1880)
1881
1882go_repository(
1883 name = "io_k8s_sigs_structured_merge_diff",
1884 commit = "b1b620dd3f06",
1885 importpath = "sigs.k8s.io/structured-merge-diff",
1886)
1887
1888go_repository(
1889 name = "org_golang_x_exp",
1890 commit = "4b39c73a6495",
1891 importpath = "golang.org/x/exp",
1892)
1893
1894go_repository(
1895 name = "org_golang_x_image",
1896 commit = "0694c2d4d067",
1897 importpath = "golang.org/x/image",
1898)
1899
1900go_repository(
1901 name = "org_golang_x_mobile",
1902 commit = "d3739f865fa6",
1903 importpath = "golang.org/x/mobile",
1904)
1905
1906go_repository(
1907 name = "org_golang_x_xerrors",
1908 commit = "a985d3407aa7",
1909 importpath = "golang.org/x/xerrors",
1910)
1911
1912go_repository(
1913 name = "org_gonum_v1_gonum",
1914 commit = "3d26580ed485",
1915 importpath = "gonum.org/v1/gonum",
1916)
1917
1918go_repository(
1919 name = "org_gonum_v1_netlib",
1920 commit = "76723241ea4e",
1921 importpath = "gonum.org/v1/netlib",
1922)
1923
1924go_repository(
1925 name = "org_modernc_cc",
1926 importpath = "modernc.org/cc",
1927 tag = "v1.0.0",
1928)
1929
1930go_repository(
1931 name = "org_modernc_golex",
1932 importpath = "modernc.org/golex",
1933 tag = "v1.0.0",
1934)
1935
1936go_repository(
1937 name = "org_modernc_mathutil",
1938 importpath = "modernc.org/mathutil",
1939 tag = "v1.0.0",
1940)
1941
1942go_repository(
1943 name = "org_modernc_strutil",
1944 importpath = "modernc.org/strutil",
1945 tag = "v1.0.0",
1946)
1947
1948go_repository(
1949 name = "org_modernc_xc",
1950 importpath = "modernc.org/xc",
1951 tag = "v1.0.0",
1952)
1953
1954go_repository(
1955 name = "org_uber_go_atomic",
1956 importpath = "go.uber.org/atomic",
1957 tag = "v1.3.2",
1958)
1959
1960go_repository(
1961 name = "org_uber_go_multierr",
1962 importpath = "go.uber.org/multierr",
1963 tag = "v1.1.0",
1964)
1965
1966go_repository(
1967 name = "org_uber_go_zap",
1968 importpath = "go.uber.org/zap",
1969 tag = "v1.10.0",
1970)
Sergiusz Bazanskic315aac2020-01-02 16:43:39 +01001971
1972go_repository(
1973 name = "com_github_dgraph_io_ristretto",
1974 commit = "83508260cb49a2c3261c2774c991870fd18b5a1b",
1975 importpath = "github.com/dgraph-io/ristretto",
1976)
1977
1978go_repository(
1979 name = "com_github_cespare_xxhash",
1980 commit = "d7df74196a9e781ede915320c11c378c1b2f3a1f",
1981 importpath = "github.com/cespare/xxhash",
1982)
1983
1984go_repository(
1985 name = "com_github_ulule_limiter_v3",
1986 commit = "6911899e37a5788df86f770b3f85c1c3eb0313d5",
1987 importpath = "github.com/ulule/limiter/v3",
1988 remote = "https://github.com/ulule/limiter",
1989 vcs = "git",
1990)
Sergiusz Bazanskia8854882020-01-05 00:34:38 +01001991
1992go_repository(
1993 name = "com_github_go_telegram_bot_api_telegram_bot_api",
1994 commit = "b33efeebc78563cfeddf19563781cffb16aaabdf",
1995 importpath = "github.com/go-telegram-bot-api/telegram-bot-api",
1996)
1997
1998go_repository(
1999 name = "com_github_technoweenie_multipartstreamer",
2000 commit = "a90a01d73ae432e2611d178c18367fbaa13e0154",
2001 importpath = "github.com/technoweenie/multipartstreamer",
2002)
2003
2004go_repository(
2005 name = "in_gopkg_irc_v3",
2006 commit = "d07dcb9293789fdc99c797d3499a5799bc343b86",
2007 importpath = "gopkg.in/irc.v3",
2008)
Sergiusz Bazanskic881cf32020-04-08 20:03:12 +02002009
2010go_repository(
2011 name = "in_gopkg_russross_blackfriday_v2",
2012 commit = "d3b5b032dc8e8927d31a5071b56e14c89f045135",
2013 importpath = "gopkg.in/russross/blackfriday.v2",
2014)
2015
2016go_repository(
2017 name = "com_github_shurcool_sanitized_anchor_name",
2018 commit = "7bfe4c7ecddb3666a94b053b422cdd8f5aaa3615",
2019 importpath = "github.com/shurcooL/sanitized_anchor_name",
2020)
Sergiusz Bazanski4c0e9b52020-04-08 22:42:33 +02002021
2022go_repository(
2023 name = "com_github_go_git_go_billy_v5",
2024 commit = "d7a8afccaed297c30f8dff5724dbe422b491dd0d",
2025 importpath = "github.com/go-git/go-billy/v5",
2026 remote = "https://github.com/go-git/go-billy",
2027 vcs = "git",
2028)
2029
2030go_repository(
2031 name = "com_github_go_git_go_git_v5",
2032 commit = "3127ad9a44a2ee935502816065dfe39f494f583d",
2033 importpath = "github.com/go-git/go-git/v5",
2034 remote = "https://github.com/go-git/go-git",
2035 vcs = "git",
2036 build_extra_args = [
2037 "-known_import=github.com/go-git/go-billy/v5",
2038 ],
2039)
2040
2041go_repository(
2042 name = "com_github_go_git_gcfg",
2043 commit = "22f18f9a74d34e3b1a7d59cfa33043bc50ebe376",
2044 importpath = "github.com/go-git/gcfg",
2045)
2046
2047go_repository(
2048 name = "in_gopkg_warnings_v0",
2049 commit = "ec4a0fea49c7b46c2aeb0b51aac55779c607e52b",
2050 importpath = "gopkg.in/warnings.v0",
2051)
2052
2053go_repository(
2054 name = "com_github_emirpasic_gods",
2055 commit = "80e934ed68b9084f386ae25f74f839aaecfb54d8",
2056 importpath = "github.com/emirpasic/gods",
2057)
2058
2059go_repository(
2060 name = "com_github_jbenet_go_context",
2061 commit = "d14ea06fba99483203c19d92cfcd13ebe73135f4",
2062 importpath = "github.com/jbenet/go-context",
2063)
2064
2065go_repository(
2066 name = "com_github_kevinburke_ssh_config",
2067 commit = "01f96b0aa0cdcaa93f9495f89bbc6cb5a992ce6e",
2068 importpath = "github.com/kevinburke/ssh_config",
2069)
2070
2071go_repository(
2072 name = "com_github_xanzy_ssh_agent",
2073 commit = "6a3e2ff9e7c564f36873c2e36413f634534f1c44",
2074 importpath = "github.com/xanzy/ssh-agent",
2075)
Sergiusz Bazanski8adbd492020-04-10 21:20:53 +02002076
2077go_repository(
2078 name = "com_github_gabriel_vasile_mimetype",
2079 commit = "06500030e7d26826f68caa5ca7d98c315c4caa28",
2080 importpath = "github.com/gabriel-vasile/mimetype",
2081)