blob: e7f58fca9b8d808b7cdef7869b7324b704b055c0 [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
Patryk Jakuszew30f9d032020-06-05 23:37:34 +020010skylib_version = "1.0.2"
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",
Patryk Jakuszew30f9d032020-06-05 23:37:34 +020015 url = "https://github.com/bazelbuild/bazel-skylib/releases/download/{}/bazel-skylib-{}.tar.gz".format(skylib_version, skylib_version),
16 sha256 = "97e70364e9249702246c0e9444bccdc4b847bed1eb03c5a3ece4f83dfe6abc44",
Serge Bazanski2ce36762019-07-14 16:29:52 +020017)
Patryk Jakuszew30f9d032020-06-05 23:37:34 +020018load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
19bazel_skylib_workspace()
Serge Bazanski2ce36762019-07-14 16:29:52 +020020
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +020021# zlib
22
23http_archive(
24 name = "zlib",
25 build_file = "@com_google_protobuf//:third_party/zlib.BUILD",
26 sha256 = "c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1",
27 strip_prefix = "zlib-1.2.11",
28 urls = [
29 "https://mirror.bazel.build/zlib.net/zlib-1.2.11.tar.gz",
30 "https://zlib.net/zlib-1.2.11.tar.gz",
31 ],
32)
33
Sergiusz Bazanski1fad2e52019-08-01 20:16:27 +020034# subpar
35
36git_repository(
37 name = "subpar",
38 remote = "https://github.com/q3k/subpar",
39 commit = "5dd9fb4586616c69df9b3f5aba12f08f85d708d1",
Sergiusz Bazanski5f9b1ec2019-09-22 02:19:18 +020040 shallow_since = "1563277890 +0200",
Sergiusz Bazanski1fad2e52019-08-01 20:16:27 +020041)
42
Patryk Jakuszew30f9d032020-06-05 23:37:34 +020043# Go rules
44
45load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
46
47http_archive(
48 name = "io_bazel_rules_go",
49 sha256 = "6a68e269802911fa419abb940c850734086869d7fe9bc8e12aaf60a09641c818",
50 urls = [
51 "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.23.0/rules_go-v0.23.0.tar.gz",
52 "https://github.com/bazelbuild/rules_go/releases/download/v0.23.0/rules_go-v0.23.0.tar.gz",
53 ],
54)
55
56http_archive(
57 name = "bazel_gazelle",
58 sha256 = "bfd86b3cbe855d6c16c6fce60d76bd51f5c8dbc9cfcaef7a2bb5c1aafd0710e8",
59 urls = [
60 "https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.21.0/bazel-gazelle-v0.21.0.tar.gz",
61 "https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.21.0/bazel-gazelle-v0.21.0.tar.gz",
62 ],
63)
64
65load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository")
66
67go_repository(
68 name = "org_golang_x_net",
69 commit = "d3edc9973b7eb1fb302b0ff2c62357091cea9a30",
70 importpath = "golang.org/x/net",
71)
72
73load("@io_bazel_rules_go//go:deps.bzl", "go_rules_dependencies", "go_register_toolchains")
74
75go_rules_dependencies()
76
77go_register_toolchains()
78
79load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies")
80
81gazelle_dependencies()
82
Serge Bazanski2ce36762019-07-14 16:29:52 +020083# Docker rules
84
85http_archive(
86 name = "io_bazel_rules_docker",
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +020087 sha256 = "dc97fccceacd4c6be14e800b2a00693d5e8d07f69ee187babfd04a80a9f8e250",
88 strip_prefix = "rules_docker-0.14.1",
89 urls = ["https://github.com/bazelbuild/rules_docker/releases/download/v0.14.1/rules_docker-v0.14.1.tar.gz"],
Serge Bazanski2ce36762019-07-14 16:29:52 +020090)
91
Sergiusz Bazanski356ea8b2019-07-21 23:56:43 +020092load("@io_bazel_rules_docker//toolchains/docker:toolchain.bzl", docker_toolchain_configure = "toolchain_configure")
93
94# This forces the use of Docker $HOME/.docker configuration.
95docker_toolchain_configure(
96 name = "docker_config",
97 client_config = "",
Serge Bazanskib2d6b112019-07-30 13:07:04 +020098 docker_path = "/usr/bin/docker",
Sergiusz Bazanski356ea8b2019-07-21 23:56:43 +020099)
100
Serge Bazanski2ce36762019-07-14 16:29:52 +0200101load(
102 "@io_bazel_rules_docker//repositories:repositories.bzl",
103 container_repositories = "repositories",
104)
105
106container_repositories()
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200107
Sergiusz Bazanski3e597182019-04-19 14:40:47 +0200108# Python rules
Serge Bazanski2ce36762019-07-14 16:29:52 +0200109
Sergiusz Bazanskide061802019-01-13 21:14:02 +0100110git_repository(
Serge Bazanski2ce36762019-07-14 16:29:52 +0200111 name = "com_apt_itude_rules_pip",
Sergiusz Bazanski5f9b1ec2019-09-22 02:19:18 +0200112 commit = "186bade4f054c0a9be7037585584c9c572cba483",
Serge Bazanski2ce36762019-07-14 16:29:52 +0200113 remote = "https://github.com/apt-itude/rules_pip.git",
Sergiusz Bazanskide061802019-01-13 21:14:02 +0100114)
115
116# Python dependencies
Serge Bazanski2ce36762019-07-14 16:29:52 +0200117load("@com_apt_itude_rules_pip//rules:dependencies.bzl", "pip_rules_dependencies")
Sergiusz Bazanskide061802019-01-13 21:14:02 +0100118
Serge Bazanski2ce36762019-07-14 16:29:52 +0200119pip_rules_dependencies()
Sergiusz Bazanskide061802019-01-13 21:14:02 +0100120
Serge Bazanski2ce36762019-07-14 16:29:52 +0200121load("@com_apt_itude_rules_pip//rules:repository.bzl", "pip_repository")
122
123pip_repository(
Sergiusz Bazanski5f9b1ec2019-09-22 02:19:18 +0200124 name = "pydeps",
125 requirements = "//third_party/py:requirements-lock.json",
Sergiusz Bazanskide061802019-01-13 21:14:02 +0100126)
127
Sergiusz Bazanski5f9b1ec2019-09-22 02:19:18 +0200128load("@pydeps//:requirements.bzl", "pip_install")
129
130pip_install()
131
Sergiusz Bazanski65865332019-05-18 16:23:45 +0200132# Docker base images
133
134load("@io_bazel_rules_docker//container:container.bzl", "container_pull")
Sergiusz Bazanskia7e26cc2019-06-21 20:38:35 +0200135
Sergiusz Bazanski65865332019-05-18 16:23:45 +0200136container_pull(
137 name = "prodimage-bionic",
Serge Bazanskib2d6b112019-07-30 13:07:04 +0200138 registry = "registry.k0.hswaw.net",
139 repository = "q3k/prodimage",
Serge Bazanskiec71cb52019-08-22 18:13:13 +0200140 tag = "20190822-1227",
141 digest = "sha256:1cd1f84169b8e1414a5d511b42909f2d540831c67b6799ae9af8cd6a80d75b5f",
Sergiusz Bazanski65865332019-05-18 16:23:45 +0200142)
143
Sergiusz Bazanskia7e26cc2019-06-21 20:38:35 +0200144container_pull(
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200145 name = "gerrit-3.0.8",
Sergiusz Bazanskia7e26cc2019-06-21 20:38:35 +0200146 registry = "index.docker.io",
147 repository = "gerritcodereview/gerrit",
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200148 tag = "3.0.8-ubuntu18",
149 digest = "sha256:8f58236129e6547d92502a2e9d8f40129f45f15007beaeafb59fed4faffddb3e",
Sergiusz Bazanskia7e26cc2019-06-21 20:38:35 +0200150)
151
Sergiusz Bazanski48050572020-05-10 21:34:10 +0200152# third_party/factorio
153load("//third_party/factorio:factorio.bzl", "factorio_repositories")
154factorio_repositories()
Sergiusz Bazanski59786c52020-04-01 02:05:42 +0200155
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100156
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200157# For devtools/gerrit/gerrit-oauth-provider and gerrit OWNERS plugin
Sergiusz Bazanski573da782019-06-21 19:59:52 +0200158
159git_repository(
160 name = "com_googlesource_gerrit_bazlets",
161 remote = "https://gerrit.googlesource.com/bazlets",
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200162 commit = "1d381f01c853e2c02ae35430a8e294e485635d62",
Sergiusz Bazanski573da782019-06-21 19:59:52 +0200163)
164
165load(
166 "@com_googlesource_gerrit_bazlets//:gerrit_api.bzl",
167 "gerrit_api",
168)
169
170gerrit_api()
171
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +0200172load("@com_googlesource_gerrit_bazlets//tools:maven_jar.bzl", gerrit_maven_jar="maven_jar", GERRIT="GERRIT")
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200173PROLOG_VERS = "1.4.3"
174JACKSON_VER = "2.9.7"
Sergiusz Bazanski573da782019-06-21 19:59:52 +0200175
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +0200176gerrit_maven_jar(
Sergiusz Bazanski573da782019-06-21 19:59:52 +0200177 name = "scribe",
178 artifact = "org.scribe:scribe:1.3.7",
179 sha1 = "583921bed46635d9f529ef5f14f7c9e83367bc6e",
180)
181
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +0200182gerrit_maven_jar(
Sergiusz Bazanski573da782019-06-21 19:59:52 +0200183 name = "commons-codec",
184 artifact = "commons-codec:commons-codec:1.4",
185 sha1 = "4216af16d38465bbab0f3dff8efa14204f7a399a",
186)
187
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +0200188gerrit_maven_jar(
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200189 name = "jackson-core",
190 artifact = "com.fasterxml.jackson.core:jackson-core:" + JACKSON_VER,
191 sha1 = "4b7f0e0dc527fab032e9800ed231080fdc3ac015",
192)
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +0200193gerrit_maven_jar(
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200194 name = "jackson-databind",
195 artifact = "com.fasterxml.jackson.core:jackson-databind:" + JACKSON_VER,
196 sha1 = "e6faad47abd3179666e89068485a1b88a195ceb7",
197)
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +0200198gerrit_maven_jar(
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200199 name = "jackson-annotations",
200 artifact = "com.fasterxml.jackson.core:jackson-annotations:" + JACKSON_VER,
201 sha1 = "4b838e5c4fc17ac02f3293e9a558bb781a51c46d",
202)
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +0200203gerrit_maven_jar(
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200204 name = "jackson-dataformat-yaml",
205 artifact = "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:" + JACKSON_VER,
206 sha1 = "a428edc4bb34a2da98a50eb759c26941d4e85960",
207)
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +0200208gerrit_maven_jar(
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200209 name = "snakeyaml",
210 artifact = "org.yaml:snakeyaml:1.23",
211 sha1 = "ec62d74fe50689c28c0ff5b35d3aebcaa8b5be68",
212)
213
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +0200214gerrit_maven_jar(
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200215 name = "prolog-runtime",
216 artifact = "com.googlecode.prolog-cafe:prolog-runtime:" + PROLOG_VERS,
217 attach_source = False,
218 repository = GERRIT,
219 sha1 = "d5206556cbc76ffeab21313ffc47b586a1efbcbb",
220)
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +0200221gerrit_maven_jar(
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200222 name = "prolog-compiler",
223 artifact = "com.googlecode.prolog-cafe:prolog-compiler:" + PROLOG_VERS,
224 attach_source = False,
225 repository = GERRIT,
226 sha1 = "f37032cf1dec3e064427745bc59da5a12757a3b2",
227)
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +0200228gerrit_maven_jar(
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200229 name = "prolog-io",
230 artifact = "com.googlecode.prolog-cafe:prolog-io:" + PROLOG_VERS,
231 attach_source = False,
232 repository = GERRIT,
233 sha1 = "d02b2640b26f64036b6ba2b45e4acc79281cea17",
234)
235
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +0200236# minecraft spigot/bukkit deps
237# this uses rules_jvm_external vs gerrit's maven_jar because we need SNAPSHOT support
238
239http_archive(
240 name = "io_grpc_grpc_java",
241 sha256 = "446ad7a2e85bbd05406dbf95232c7c49ed90de83b3b60cb2048b0c4c9f254d29",
242 strip_prefix = "grpc-java-1.29.0",
243 url = "https://github.com/grpc/grpc-java/archive/v1.29.0.zip",
244)
245
246RULES_JVM_EXTERNAL_TAG = "3.0"
247RULES_JVM_EXTERNAL_SHA = "62133c125bf4109dfd9d2af64830208356ce4ef8b165a6ef15bbff7460b35c3a"
248
249http_archive(
250 name = "rules_jvm_external",
251 strip_prefix = "rules_jvm_external-%s" % RULES_JVM_EXTERNAL_TAG,
252 sha256 = RULES_JVM_EXTERNAL_SHA,
253 url = "https://github.com/bazelbuild/rules_jvm_external/archive/%s.zip" % RULES_JVM_EXTERNAL_TAG,
254)
255
256load("@rules_jvm_external//:defs.bzl", "maven_install")
257load("@io_grpc_grpc_java//:repositories.bzl", "IO_GRPC_GRPC_JAVA_ARTIFACTS")
258load("@io_grpc_grpc_java//:repositories.bzl", "IO_GRPC_GRPC_JAVA_OVERRIDE_TARGETS")
259
260maven_install(
261 artifacts = [
262 "org.spigotmc:spigot-api:1.15.2-R0.1-SNAPSHOT",
263 "io.grpc:grpc-netty-shaded:1.29.0",
264 "io.grpc:grpc-services:1.29.0",
265 ] + IO_GRPC_GRPC_JAVA_ARTIFACTS,
266 generate_compat_repositories = True,
267 override_targets = IO_GRPC_GRPC_JAVA_OVERRIDE_TARGETS,
268 repositories = [
269 "https://hub.spigotmc.org/nexus/content/repositories/snapshots",
270 "https://oss.sonatype.org/content/repositories/snapshots",
271 "https://repo1.maven.org/maven2/",
272 ],
273 maven_install_json = "//third_party/java:maven_install.json",
274)
275
276load("@maven//:defs.bzl", "pinned_maven_install")
277pinned_maven_install()
278
279load("@maven//:compat.bzl", "compat_repositories")
280compat_repositories()
281
282load("@io_grpc_grpc_java//:repositories.bzl", "grpc_java_repositories")
283grpc_java_repositories()
284
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200285# Gerrit OWNERS plugins external repositories
286
287git_repository(
288 name = "com_googlesource_gerrit_plugin_owners",
289 remote = "https://gerrit.googlesource.com/plugins/owners/",
290 commit = "5e691e87b8c00a04d261a8dd313f4d16c54797e8",
291)
292
Sergiusz Bazanski356ea8b2019-07-21 23:56:43 +0200293# For devtools/bazel-cache
294
295git_repository(
296 name = "com_github_buchgr_bazel_remote",
297 remote = "https://github.com/buchgr/bazel-remote.git",
298 commit = "a9374e638411da72a2ef2a83f490e61e2d74a976",
299)
300
301# Go image repos for Docker
302
303load(
304 "@io_bazel_rules_docker//go:image.bzl",
305 go_image_repositories = "repositories",
306)
307
308go_image_repositories()
Sergiusz Bazanski0037eda2020-06-13 22:43:06 +0200309
310# oniguruma, with build from //third_party/oniguruma
311
312http_archive(
313 name = "com_github_kkos_oniguruma",
314 urls = ["https://github.com/kkos/oniguruma/releases/download/v6.9.5_rev1/onig-6.9.5_rev1.tar.gz"],
315 strip_prefix = "onig-6.9.5",
316 sha256 = "d33c849d1672af227944878cefe0a8fcf26fc62bedba32aa517f2f63c314a99e",
317 build_file = "@hscloud//third_party/oniguruma:BUILD.external",
318)
319
320# jq, with build from //third_party/jq
321
322http_archive(
323 name = "com_github_stedolan_jq",
324 urls = ["https://github.com/stedolan/jq/releases/download/jq-1.6/jq-1.6.tar.gz"],
325 strip_prefix = "jq-1.6",
326 sha256 = "5de8c8e29aaa3fb9cc6b47bb27299f271354ebb72514e3accadc7d38b5bbaa72",
327 build_file = "@hscloud//third_party/jq:BUILD.external",
328)
329
330
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100331# Go repositories
332
333go_repository(
334 name = "io_k8s_kubernetes",
335 importpath = "k8s.io/kubernetes",
336 # Get from HTTP instead, this repository is _big_
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100337 urls = ["https://github.com/kubernetes/kubernetes/archive/v1.16.0.tar.gz"],
338 sha256 = "a8b2ee84ce38fa14404d7e56daa87aa2f2fb13e0114fb1150f294c992ab3f36c",
339 strip_prefix = "kubernetes-1.16.0",
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100340)
341
342go_repository(
Sergiusz Bazanski4a024bb2019-05-17 18:10:02 +0200343 name = "io_k8s_repo_infra",
344 commit = "df02ded38f9506e5bbcbf21702034b4fef815f2f",
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100345 importpath = "k8s.io/repo-infra",
346)
347
348go_repository(
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100349 name = "com_github_bitnami_kubecfg",
350 importpath = "github.com/bitnami/kubecfg",
351 vcs = "git",
352 commit = "dddf366990f581132cd046c723d73a2357de2dc8",
353 remote = "https://github.com/q3k/kubecfg",
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100354)
Sergiusz Bazanski07529712019-01-18 01:24:38 +0100355
356go_repository(
357 name = "com_github_projectcalico_calicoctl",
358 importpath = "github.com/projectcalico/calicoctl",
359 # This fork implements explicit Bazel rules
360 remote = "https://github.com/q3k/calicoctl",
361 vcs = "git",
362 commit = "1bc31862f07e7539ca493de9137ed1ad56cc9f43",
363 build_file_generation = "off",
364)
Sergiusz Bazanski9dc4b682019-04-05 23:51:49 +0200365
366go_repository(
367 name = "com_github_shirou_gopsutil",
368 commit = "2cbc9195c892b304060269ef280375236d2fcac9",
369 importpath = "github.com/shirou/gopsutil",
370)
Sergiusz Bazanskiacd001b2019-04-09 13:17:06 +0200371
372go_repository(
373 name = "com_github_cloudflare_cfssl",
374 commit = "768cd563887febaad559b511aaa5964823ccb4ab",
375 importpath = "github.com/cloudflare/cfssl",
376)
Sergiusz Bazanski258686c2019-05-01 12:26:43 +0200377
378go_repository(
379 name = "com_github_mattn_go_sqlite3",
380 commit = "5994cc52dfa89a4ee21ac891b06fbc1ea02c52d3",
381 importpath = "github.com/mattn/go-sqlite3",
382)
383
384go_repository(
385 name = "com_github_sebastiaanklippert_go_wkhtmltopdf",
386 commit = "72a7793efd38728796273861bb27d590cc33d9d4",
387 importpath = "github.com/sebastiaanklippert/go-wkhtmltopdf",
388)
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200389
390go_repository(
391 name = "com_github_ziutek_telnet",
392 commit = "c3b780dc415b28894076b4ec975ea3ea69e3980f",
393 importpath = "github.com/ziutek/telnet",
394)
395
396go_repository(
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200397 name = "com_github_digitalocean_go_netbox",
398 commit = "29433ec527e78486ea0a5758817ab672d977f90e",
399 importpath = "github.com/digitalocean/go-netbox",
400)
401
402go_repository(
403 name = "com_github_cenkalti_backoff",
404 commit = "4b4cebaf850ec58f1bb1fec5bdebdf8501c2bc3f",
405 importpath = "github.com/cenkalti/backoff",
406)
407
408go_repository(
409 name = "ml_vbom_util",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100410 commit = "db5cfe13f5cc",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200411 importpath = "vbom.ml/util",
412)
413
414go_repository(
415 name = "com_github_go_openapi_strfmt",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200416 importpath = "github.com/go-openapi/strfmt",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100417 tag = "v0.19.0",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200418)
419
420go_repository(
421 name = "com_github_go_openapi_swag",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200422 importpath = "github.com/go-openapi/swag",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100423 tag = "v0.19.5",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200424)
425
426go_repository(
427 name = "com_github_go_openapi_errors",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200428 importpath = "github.com/go-openapi/errors",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100429 tag = "v0.19.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200430)
431
432go_repository(
433 name = "com_github_go_openapi_runtime",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200434 importpath = "github.com/go-openapi/runtime",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100435 tag = "v0.19.0",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200436)
437
438go_repository(
439 name = "com_github_go_openapi_validate",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200440 importpath = "github.com/go-openapi/validate",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100441 tag = "v0.19.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200442)
443
444go_repository(
445 name = "com_github_mitchellh_mapstructure",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200446 importpath = "github.com/mitchellh/mapstructure",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100447 tag = "v1.1.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200448)
449
450go_repository(
451 name = "org_mongodb_go_mongo_driver",
452 commit = "9ec4480161a76f5267d56fc836b7f6d357fd9209",
453 importpath = "go.mongodb.org/mongo-driver",
454)
455
456go_repository(
457 name = "in_gopkg_yaml_v2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200458 importpath = "gopkg.in/yaml.v2",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100459 tag = "v2.2.4",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200460)
461
462go_repository(
463 name = "com_github_asaskevich_govalidator",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100464 commit = "f61b66f89f4a",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200465 importpath = "github.com/asaskevich/govalidator",
466)
467
468go_repository(
469 name = "com_github_go_openapi_spec",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200470 importpath = "github.com/go-openapi/spec",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100471 tag = "v0.19.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200472)
473
474go_repository(
475 name = "com_github_mailru_easyjson",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100476 commit = "b2ccc519800e",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200477 importpath = "github.com/mailru/easyjson",
478)
479
480go_repository(
481 name = "com_github_go_openapi_analysis",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200482 importpath = "github.com/go-openapi/analysis",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100483 tag = "v0.19.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200484)
485
486go_repository(
487 name = "com_github_go_openapi_jsonpointer",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200488 importpath = "github.com/go-openapi/jsonpointer",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100489 tag = "v0.19.3",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200490)
491
492go_repository(
493 name = "com_github_go_openapi_loads",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200494 importpath = "github.com/go-openapi/loads",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100495 tag = "v0.19.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200496)
497
498go_repository(
499 name = "com_github_go_openapi_jsonreference",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200500 importpath = "github.com/go-openapi/jsonreference",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100501 tag = "v0.19.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200502)
503
504go_repository(
505 name = "com_github_puerkitobio_purell",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200506 importpath = "github.com/PuerkitoBio/purell",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100507 tag = "v1.1.1",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200508)
509
510go_repository(
511 name = "com_github_puerkitobio_urlesc",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100512 commit = "de5bf2ad4578",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200513 importpath = "github.com/PuerkitoBio/urlesc",
514)
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200515
516go_repository(
517 name = "com_github_abbot_go_http_auth",
518 commit = "860ed7f246ff5abfdbd5c7ce618fd37b49fd3d86",
519 importpath = "github.com/abbot/go-http-auth",
520)
521
522go_repository(
523 name = "com_github_urfave_cli",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200524 importpath = "github.com/urfave/cli",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100525 tag = "v1.20.0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200526)
527
528go_repository(
529 name = "org_golang_x_crypto",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100530 commit = "60c769a6c586",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200531 importpath = "golang.org/x/crypto",
532)
533
534go_repository(
535 name = "org_golang_x_oauth2",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100536 commit = "0f29369cfe45",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200537 importpath = "golang.org/x/oauth2",
538)
539
540go_repository(
541 name = "com_github_djherbis_atime",
542 commit = "2d569978378562c466df74eda2d82900f435c5f4",
543 importpath = "github.com/djherbis/atime",
544)
545
546go_repository(
547 name = "com_google_cloud_go",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200548 importpath = "cloud.google.com/go",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100549 tag = "v0.38.0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200550)
551
552go_repository(
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200553 name = "com_github_stackexchange_wmi",
554 commit = "cbe66965904dbe8a6cd589e2298e5d8b986bd7dd",
555 importpath = "github.com/stackexchange/wmi",
556)
557
558go_repository(
559 name = "com_github_go_ole_go_ole",
560 commit = "938323a72016e9cf84fa5fba7635089efb0ad87f",
561 importpath = "github.com/go-ole/go-ole",
562)
563
564go_repository(
565 name = "com_github_dustin_go_humanize",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200566 importpath = "github.com/dustin/go-humanize",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100567 tag = "v1.0.0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200568)
569
570go_repository(
571 name = "io_k8s_client_go",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100572 commit = "0a8a1d7b7fae",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200573 importpath = "k8s.io/client-go",
574)
575
576go_repository(
577 name = "io_k8s_apimachinery",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200578 build_file_proto_mode = "disable",
Sergiusz Bazanski9d738ce2020-02-21 12:54:05 +0100579 commit = "731dcecc205498f52a21b12e311af095efb4b188",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100580 importpath = "k8s.io/apimachinery",
Sergiusz Bazanski9d738ce2020-02-21 12:54:05 +0100581 patches = ["//third_party/go/k8s-apimachinery:fix-kubernetes-bug-87675.patch"],
582 patch_args = ["-p1"],
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200583)
584
585go_repository(
586 name = "io_k8s_klog",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200587 importpath = "k8s.io/klog",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100588 tag = "v1.0.0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200589)
590
591go_repository(
592 name = "io_k8s_utils",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100593 commit = "e782cd3c129f",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200594 importpath = "k8s.io/utils",
595)
596
597go_repository(
598 name = "com_github_googleapis_gnostic",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100599 commit = "15cf44e552f9",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200600 importpath = "github.com/googleapis/gnostic",
601)
602
603go_repository(
604 name = "io_k8s_api",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200605 build_file_proto_mode = "disable",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100606 commit = "bbc9463b57e5",
607 importpath = "k8s.io/api",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200608)
609
610go_repository(
611 name = "org_golang_x_time",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100612 commit = "9d24e82272b4",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200613 importpath = "golang.org/x/time",
614)
615
616go_repository(
617 name = "com_github_google_gofuzz",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200618 importpath = "github.com/google/gofuzz",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100619 tag = "v1.0.0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200620)
621
622go_repository(
623 name = "io_k8s_sigs_yaml",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200624 importpath = "sigs.k8s.io/yaml",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100625 tag = "v1.1.0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200626)
627
628go_repository(
629 name = "com_github_modern_go_reflect2",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200630 importpath = "github.com/modern-go/reflect2",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100631 tag = "v1.0.1",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200632)
633
634go_repository(
635 name = "com_github_davecgh_go_spew",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200636 importpath = "github.com/davecgh/go-spew",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100637 tag = "v1.1.1",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200638)
639
640go_repository(
641 name = "com_github_json_iterator_go",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200642 importpath = "github.com/json-iterator/go",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100643 tag = "v1.1.8",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200644)
645
646go_repository(
647 name = "com_github_modern_go_concurrent",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100648 commit = "bacd9c7ef1dd",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200649 importpath = "github.com/modern-go/concurrent",
650)
651
652go_repository(
653 name = "in_gopkg_inf_v0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200654 importpath = "gopkg.in/inf.v0",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100655 tag = "v0.9.1",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200656)
Serge Bazanskib2d6b112019-07-30 13:07:04 +0200657
Serge Bazanskibeefe442019-07-30 13:03:03 +0200658go_repository(
659 name = "com_github_cloudflare_cfrpki",
660 commit = "adece784464315db69299ba75e9287c60cd95c69",
661 importpath = "github.com/cloudflare/cfrpki",
662)
663
664go_repository(
665 name = "com_github_prometheus_client_golang",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200666 importpath = "github.com/prometheus/client_golang",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100667 tag = "v1.0.0",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200668)
669
670go_repository(
671 name = "com_github_rs_cors",
672 commit = "db0fe48135e83b5812a5a31be0eea66984b1b521",
673 importpath = "github.com/rs/cors",
674)
675
676go_repository(
677 name = "com_github_cloudflare_gortr",
678 commit = "95270606e8853d9b93f5be46d656d08ec0a4ef09",
679 importpath = "github.com/cloudflare/gortr",
680)
681
682go_repository(
683 name = "com_github_gorilla_mux",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200684 importpath = "github.com/gorilla/mux",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100685 tag = "v1.6.2",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200686)
687
688go_repository(
689 name = "com_github_sirupsen_logrus",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200690 importpath = "github.com/sirupsen/logrus",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100691 tag = "v1.4.2",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200692)
693
694go_repository(
695 name = "com_github_prometheus_common",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200696 importpath = "github.com/prometheus/common",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100697 tag = "v0.4.1",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200698)
699
700go_repository(
701 name = "com_github_beorn7_perks",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200702 importpath = "github.com/beorn7/perks",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100703 tag = "v1.0.0",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200704)
705
706go_repository(
707 name = "com_github_prometheus_client_model",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100708 commit = "fd36f4220a90",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200709 importpath = "github.com/prometheus/client_model",
710)
711
712go_repository(
713 name = "com_github_prometheus_procfs",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200714 importpath = "github.com/prometheus/procfs",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100715 tag = "v0.0.2",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200716)
717
718go_repository(
719 name = "com_github_matttproud_golang_protobuf_extensions",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200720 importpath = "github.com/matttproud/golang_protobuf_extensions",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100721 tag = "v1.0.1",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200722)
Sergiusz Bazanski6eaaaf92019-08-02 01:25:31 +0200723
724go_repository(
Sergiusz Bazanski30317b42019-08-01 16:50:41 +0200725 name = "com_github_jmoiron_sqlx",
726 commit = "38398a30ed8516ffda617a04c822de09df8a3ec5",
727 importpath = "github.com/jmoiron/sqlx",
728)
729
730go_repository(
731 name = "com_github_lib_pq",
732 commit = "3427c32cb71afc948325f299f040e53c1dd78979",
733 importpath = "github.com/lib/pq",
734)
735
736go_repository(
737 name = "com_github_gchaincl_sqlhooks",
738 commit = "1932c8dd22f2283687586008bf2d58c2c5c014d0",
739 importpath = "github.com/gchaincl/sqlhooks",
740)
741
742go_repository(
743 name = "com_github_golang_migrate_migrate_v4",
744 commit = "e93eaeb3fe21ce2ccc1365277a01863e6bc84d9c",
745 importpath = "github.com/golang-migrate/migrate/v4",
746 remote = "https://github.com/golang-migrate/migrate",
747 vcs = "git",
748)
749
750go_repository(
751 name = "com_github_hashicorp_go_multierror",
752 commit = "bdca7bb83f603b80ef756bb953fe1dafa9cd00a2",
753 importpath = "github.com/hashicorp/go-multierror",
754)
755
756go_repository(
757 name = "com_github_hashicorp_errwrap",
758 commit = "8a6fb523712970c966eefc6b39ed2c5e74880354",
759 importpath = "github.com/hashicorp/errwrap",
760)
761
762go_repository(
763 name = "com_github_cockroachdb_cockroach_go",
764 commit = "e0a95dfd547cc9c3ebaaba1a12c2afe4bf621ac5",
765 importpath = "github.com/cockroachdb/cockroach-go",
766)
767
768go_repository(
769 name = "com_github_jackc_pgx",
770 commit = "6954c15ad0bd3c9aa6dd1b190732b020379beb28",
771 importpath = "github.com/jackc/pgx",
772)
773
774go_repository(
Sergiusz Bazanski6eaaaf92019-08-02 01:25:31 +0200775 name = "com_github_golang_collections_go_datastructures",
776 commit = "59788d5eb2591d3497ffb8fafed2f16fe00e7775",
777 importpath = "github.com/golang-collections/go-datastructures",
778)
779
780go_repository(
781 name = "com_github_go_test_deep",
782 commit = "cf67d735e69b4a4d50cdf571a92b0144786080f7",
783 importpath = "github.com/go-test/deep",
784)
Sergiusz Bazanski1fad2e52019-08-01 20:16:27 +0200785
786go_repository(
787 name = "com_github_sethvargo_go_password",
788 commit = "68ac5879751a7105834296859f8c1bf70b064675",
789 importpath = "github.com/sethvargo/go-password",
790)
Sergiusz Bazanskib13b7ff2019-08-29 20:12:24 +0200791
792go_repository(
793 name = "in_gopkg_ldap_v3",
794 commit = "9f0d712775a0973b7824a1585a86a4ea1d5263d9",
795 importpath = "gopkg.in/ldap.v3",
796)
797
798go_repository(
799 name = "in_gopkg_asn1_ber_v1",
800 commit = "f715ec2f112d1e4195b827ad68cf44017a3ef2b1",
801 importpath = "gopkg.in/asn1-ber.v1",
802)
Sergiusz Bazanski47b7e852019-09-26 18:32:39 +0200803
804go_repository(
805 name = "com_github_q3k_cursedjsonrpc",
806 commit = "304f0561c9162a2696f3ae7c96f3404324177ab8",
807 importpath = "github.com/q3k/cursedjsonrpc",
808)
809
810go_repository(
811 name = "com_github_q3k_cursedjson",
812 commit = "af0e3abb1bcef7197b3b9f91d7d094e6528a2d05",
813 importpath = "github.com/q3k/cursedjson",
814)
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100815
816go_repository(
817 name = "co_honnef_go_tools",
818 commit = "ea95bdfd59fc",
819 importpath = "honnef.co/go/tools",
820)
821
822go_repository(
823 name = "com_github_azure_go_ansiterm",
824 commit = "d6e3b3328b78",
825 importpath = "github.com/Azure/go-ansiterm",
826)
827
828go_repository(
829 name = "com_github_azure_go_autorest",
830 importpath = "github.com/Azure/go-autorest",
831 tag = "v11.5.0",
832)
833
834local_repository(
835 name = "com_github_census_instrumentation_opencensus_proto",
836 path = "./third_party/go/opencensus-proto",
837)
838
839go_repository(
840 name = "com_github_client9_misspell",
841 importpath = "github.com/client9/misspell",
842 tag = "v0.3.4",
843)
844
845go_repository(
846 name = "com_github_containerd_continuity",
847 commit = "7f53d412b9eb",
848 importpath = "github.com/containerd/continuity",
849)
850
851go_repository(
852 name = "com_github_coreos_clair",
853 commit = "44ae4bc9590a",
854 importpath = "github.com/coreos/clair",
855)
856
857go_repository(
858 name = "com_github_dgrijalva_jwt_go",
859 importpath = "github.com/dgrijalva/jwt-go",
860 tag = "v3.2.0",
861)
862
863go_repository(
864 name = "com_github_docker_cli",
865 commit = "54c19e67f69c",
866 importpath = "github.com/docker/cli",
867)
868
869go_repository(
870 name = "com_github_docker_distribution",
871 importpath = "github.com/docker/distribution",
872 tag = "v2.7.1",
873)
874
875go_repository(
876 name = "com_github_docker_docker",
877 commit = "be7ac8be2ae0",
878 importpath = "github.com/docker/docker",
879)
880
881go_repository(
882 name = "com_github_docker_docker_ce",
883 commit = "f53bd8bb8e43",
884 importpath = "github.com/docker/docker-ce",
885)
886
887go_repository(
888 name = "com_github_docker_docker_credential_helpers",
889 importpath = "github.com/docker/docker-credential-helpers",
890 tag = "v0.6.1",
891)
892
893go_repository(
894 name = "com_github_docker_go_connections",
895 commit = "97c2040d34df",
896 importpath = "github.com/docker/go-connections",
897)
898
899go_repository(
900 name = "com_github_docker_go_metrics",
901 commit = "399ea8c73916",
902 importpath = "github.com/docker/go-metrics",
903)
904
905go_repository(
906 name = "com_github_docker_go_units",
907 importpath = "github.com/docker/go-units",
908 tag = "v0.3.3",
909)
910
911go_repository(
912 name = "com_github_docker_libtrust",
913 commit = "aabc10ec26b7",
914 importpath = "github.com/docker/libtrust",
915)
916
917go_repository(
918 name = "com_github_elazarl_go_bindata_assetfs",
919 commit = "38087fe4dafb",
920 importpath = "github.com/elazarl/go-bindata-assetfs",
921)
922
923go_repository(
924 name = "com_github_evanphx_json_patch",
925 importpath = "github.com/evanphx/json-patch",
926 tag = "v4.2.0",
927)
928
929go_repository(
930 name = "com_github_fernet_fernet_go",
931 commit = "9eac43b88a5e",
932 importpath = "github.com/fernet/fernet-go",
933)
934
935go_repository(
936 name = "com_github_fsnotify_fsnotify",
937 importpath = "github.com/fsnotify/fsnotify",
938 tag = "v1.4.7",
939)
940
941go_repository(
942 name = "com_github_genuinetools_pkg",
943 commit = "1c141f661797",
944 importpath = "github.com/genuinetools/pkg",
945)
946
947go_repository(
948 name = "com_github_genuinetools_reg",
949 commit = "d959057b30da",
950 importpath = "github.com/genuinetools/reg",
951)
952
953go_repository(
954 name = "com_github_ghodss_yaml",
955 importpath = "github.com/ghodss/yaml",
956 tag = "v1.0.0",
957)
958
959go_repository(
960 name = "com_github_gogo_protobuf",
961 commit = "65acae22fc9d",
962 importpath = "github.com/gogo/protobuf",
963)
964
965go_repository(
966 name = "com_github_golang_glog",
967 commit = "23def4e6c14b",
968 importpath = "github.com/golang/glog",
969)
970
971go_repository(
972 name = "com_github_golang_mock",
973 importpath = "github.com/golang/mock",
974 tag = "v1.2.0",
975)
976
977go_repository(
978 name = "com_github_golang_protobuf",
979 importpath = "github.com/golang/protobuf",
980 tag = "v1.3.2",
981)
982
983go_repository(
984 name = "com_github_google_btree",
985 importpath = "github.com/google/btree",
986 tag = "v1.0.0",
987)
988
989go_repository(
990 name = "com_github_google_go_cmp",
991 importpath = "github.com/google/go-cmp",
992 tag = "v0.3.0",
993)
994
995go_repository(
996 name = "com_github_google_go_jsonnet",
997 importpath = "github.com/google/go-jsonnet",
998 tag = "v0.12.1",
999)
1000
1001go_repository(
1002 name = "com_github_gophercloud_gophercloud",
1003 importpath = "github.com/gophercloud/gophercloud",
1004 tag = "v0.1.0",
1005)
1006
1007go_repository(
1008 name = "com_github_gorilla_context",
1009 importpath = "github.com/gorilla/context",
1010 tag = "v1.1.1",
1011)
1012
1013go_repository(
1014 name = "com_github_gregjones_httpcache",
1015 commit = "9cad4c3443a7",
1016 importpath = "github.com/gregjones/httpcache",
1017)
1018
1019go_repository(
1020 name = "com_github_grpc_ecosystem_grpc_gateway",
1021 importpath = "github.com/grpc-ecosystem/grpc-gateway",
1022 tag = "v1.9.5",
1023)
1024
1025go_repository(
1026 name = "com_github_hpcloud_tail",
1027 importpath = "github.com/hpcloud/tail",
1028 tag = "v1.0.0",
1029)
1030
1031go_repository(
1032 name = "com_github_imdario_mergo",
1033 importpath = "github.com/imdario/mergo",
1034 tag = "v0.3.5",
1035)
1036
1037go_repository(
1038 name = "com_github_inconshreveable_mousetrap",
1039 importpath = "github.com/inconshreveable/mousetrap",
1040 tag = "v1.0.0",
1041)
1042
1043go_repository(
1044 name = "com_github_kisielk_gotool",
1045 importpath = "github.com/kisielk/gotool",
1046 tag = "v1.0.0",
1047)
1048
1049go_repository(
1050 name = "com_github_kr_pretty",
1051 importpath = "github.com/kr/pretty",
1052 tag = "v0.1.0",
1053)
1054
1055go_repository(
1056 name = "com_github_kr_pty",
1057 importpath = "github.com/kr/pty",
1058 tag = "v1.1.5",
1059)
1060
1061go_repository(
1062 name = "com_github_kr_text",
1063 importpath = "github.com/kr/text",
1064 tag = "v0.1.0",
1065)
1066
1067go_repository(
1068 name = "com_github_mattn_go_isatty",
1069 importpath = "github.com/mattn/go-isatty",
1070 tag = "v0.0.4",
1071)
1072
1073go_repository(
1074 name = "com_github_microsoft_go_winio",
1075 importpath = "github.com/Microsoft/go-winio",
1076 tag = "v0.4.11",
1077)
1078
1079go_repository(
1080 name = "com_github_mitchellh_go_wordwrap",
1081 importpath = "github.com/mitchellh/go-wordwrap",
1082 tag = "v1.0.0",
1083)
1084
1085go_repository(
1086 name = "com_github_nvveen_gotty",
1087 commit = "cd527374f1e5",
1088 importpath = "github.com/Nvveen/Gotty",
1089)
1090
1091go_repository(
1092 name = "com_github_onsi_ginkgo",
1093 importpath = "github.com/onsi/ginkgo",
1094 tag = "v1.10.1",
1095)
1096
1097go_repository(
1098 name = "com_github_onsi_gomega",
1099 importpath = "github.com/onsi/gomega",
1100 tag = "v1.7.0",
1101)
1102
1103go_repository(
1104 name = "com_github_opencontainers_go_digest",
1105 importpath = "github.com/opencontainers/go-digest",
1106 tag = "v1.0.0-rc1",
1107)
1108
1109go_repository(
1110 name = "com_github_opencontainers_image_spec",
1111 importpath = "github.com/opencontainers/image-spec",
1112 tag = "v1.0.1",
1113)
1114
1115go_repository(
1116 name = "com_github_opencontainers_runc",
1117 importpath = "github.com/opencontainers/runc",
1118 tag = "v0.1.1",
1119)
1120
1121go_repository(
1122 name = "com_github_openzipkin_zipkin_go",
1123 importpath = "github.com/openzipkin/zipkin-go",
1124 tag = "v0.1.3",
1125)
1126
1127go_repository(
1128 name = "com_github_peterbourgon_diskv",
1129 importpath = "github.com/peterbourgon/diskv",
1130 tag = "v2.0.1",
1131)
1132
1133go_repository(
1134 name = "com_github_peterhellberg_link",
1135 importpath = "github.com/peterhellberg/link",
1136 tag = "v1.0.0",
1137)
1138
1139go_repository(
1140 name = "com_github_pkg_errors",
1141 importpath = "github.com/pkg/errors",
1142 tag = "v0.8.1",
1143)
1144
1145go_repository(
1146 name = "com_github_pmezard_go_difflib",
1147 importpath = "github.com/pmezard/go-difflib",
1148 tag = "v1.0.0",
1149)
1150
1151go_repository(
1152 name = "com_github_sergi_go_diff",
1153 commit = "feef008d51ad",
1154 importpath = "github.com/sergi/go-diff",
1155)
1156
1157go_repository(
1158 name = "com_github_shurcool_httpfs",
1159 commit = "809beceb2371",
1160 importpath = "github.com/shurcooL/httpfs",
1161)
1162
1163go_repository(
1164 name = "com_github_spf13_cobra",
1165 importpath = "github.com/spf13/cobra",
1166 tag = "v0.0.5",
1167)
1168
1169go_repository(
1170 name = "com_github_spf13_pflag",
1171 importpath = "github.com/spf13/pflag",
1172 tag = "v1.0.5",
1173)
1174
1175go_repository(
1176 name = "com_github_stretchr_objx",
1177 importpath = "github.com/stretchr/objx",
1178 tag = "v0.2.0",
1179)
1180
1181go_repository(
1182 name = "com_github_stretchr_testify",
1183 importpath = "github.com/stretchr/testify",
1184 tag = "v1.3.0",
1185)
1186
1187go_repository(
1188 name = "in_gopkg_airbrake_gobrake_v2",
1189 importpath = "gopkg.in/airbrake/gobrake.v2",
1190 tag = "v2.0.9",
1191)
1192
1193go_repository(
1194 name = "in_gopkg_check_v1",
1195 commit = "788fd7840127",
1196 importpath = "gopkg.in/check.v1",
1197)
1198
1199go_repository(
1200 name = "in_gopkg_fsnotify_v1",
1201 importpath = "gopkg.in/fsnotify.v1",
1202 tag = "v1.4.7",
1203)
1204
1205go_repository(
1206 name = "in_gopkg_gemnasium_logrus_airbrake_hook_v2",
1207 importpath = "gopkg.in/gemnasium/logrus-airbrake-hook.v2",
1208 tag = "v2.1.2",
1209)
1210
1211go_repository(
1212 name = "in_gopkg_tomb_v1",
1213 commit = "dd632973f1e7",
1214 importpath = "gopkg.in/tomb.v1",
1215)
1216
1217go_repository(
1218 name = "io_k8s_apiextensions_apiserver",
1219 build_file_proto_mode = "disable",
1220 commit = "b615a37f53e7",
1221 importpath = "k8s.io/apiextensions-apiserver",
1222)
1223
1224go_repository(
1225 name = "io_k8s_kube_openapi",
1226 commit = "30be4d16710a",
1227 importpath = "k8s.io/kube-openapi",
1228)
1229
1230go_repository(
1231 name = "io_opencensus_go",
1232 importpath = "go.opencensus.io",
1233 tag = "v0.21.0",
1234)
1235
1236go_repository(
1237 name = "io_opencensus_go_contrib_exporter_ocagent",
1238 importpath = "contrib.go.opencensus.io/exporter/ocagent",
1239 tag = "v0.6.0",
1240)
1241
1242go_repository(
1243 name = "org_apache_git_thrift_git",
1244 commit = "9b75e4fe745a",
1245 importpath = "git.apache.org/thrift.git",
1246)
1247
1248go_repository(
1249 name = "org_golang_google_api",
1250 importpath = "google.golang.org/api",
1251 tag = "v0.4.0",
1252)
1253
1254go_repository(
1255 name = "org_golang_google_appengine",
1256 importpath = "google.golang.org/appengine",
1257 tag = "v1.5.0",
1258)
1259
1260go_repository(
1261 name = "org_golang_google_genproto",
1262 commit = "54afdca5d873",
1263 importpath = "google.golang.org/genproto",
1264)
1265
1266go_repository(
1267 name = "org_golang_google_grpc",
1268 importpath = "google.golang.org/grpc",
Patryk Jakuszew30f9d032020-06-05 23:37:34 +02001269 tag = "v1.29.1",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +01001270)
1271
1272go_repository(
1273 name = "org_golang_x_lint",
1274 commit = "d0100b6bd8b3",
1275 importpath = "golang.org/x/lint",
1276)
1277
1278go_repository(
1279 name = "org_golang_x_sync",
1280 commit = "112230192c58",
1281 importpath = "golang.org/x/sync",
1282)
1283
1284go_repository(
1285 name = "org_golang_x_sys",
1286 commit = "c7b8b68b1456",
1287 importpath = "golang.org/x/sys",
1288)
1289
1290go_repository(
1291 name = "org_golang_x_text",
1292 importpath = "golang.org/x/text",
1293 tag = "v0.3.2",
1294)
1295
1296go_repository(
1297 name = "org_golang_x_tools",
1298 commit = "5eefd052ad72",
1299 importpath = "golang.org/x/tools",
1300)
1301
1302go_repository(
1303 name = "tools_gotest",
1304 importpath = "gotest.tools",
1305 tag = "v2.2.0",
1306)
1307
1308go_repository(
1309 name = "com_github_alecthomas_template",
1310 commit = "a0175ee3bccc",
1311 importpath = "github.com/alecthomas/template",
1312)
1313
1314go_repository(
1315 name = "com_github_alecthomas_units",
1316 commit = "2efee857e7cf",
1317 importpath = "github.com/alecthomas/units",
1318)
1319
1320go_repository(
1321 name = "com_github_armon_consul_api",
1322 commit = "eb2c6b5be1b6",
1323 importpath = "github.com/armon/consul-api",
1324)
1325
1326go_repository(
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +01001327 name = "com_github_bgentry_speakeasy",
1328 importpath = "github.com/bgentry/speakeasy",
1329 tag = "v0.1.0",
1330)
1331
1332go_repository(
1333 name = "com_github_blang_semver",
1334 importpath = "github.com/blang/semver",
1335 tag = "v3.5.0",
1336)
1337
1338go_repository(
1339 name = "com_github_burntsushi_toml",
1340 importpath = "github.com/BurntSushi/toml",
1341 tag = "v0.3.1",
1342)
1343
1344go_repository(
1345 name = "com_github_burntsushi_xgb",
1346 commit = "27f122750802",
1347 importpath = "github.com/BurntSushi/xgb",
1348)
1349
1350go_repository(
1351 name = "com_github_chai2010_gettext_go",
1352 commit = "c6fed771bfd5",
1353 importpath = "github.com/chai2010/gettext-go",
1354)
1355
1356go_repository(
1357 name = "com_github_cockroachdb_datadriven",
1358 commit = "80d97fb3cbaa",
1359 importpath = "github.com/cockroachdb/datadriven",
1360)
1361
1362go_repository(
1363 name = "com_github_coreos_etcd",
1364 importpath = "github.com/coreos/etcd",
1365 tag = "v3.3.10",
1366)
1367
1368go_repository(
1369 name = "com_github_coreos_go_etcd",
1370 importpath = "github.com/coreos/go-etcd",
1371 tag = "v2.0.0",
1372)
1373
1374go_repository(
1375 name = "com_github_coreos_go_oidc",
1376 importpath = "github.com/coreos/go-oidc",
1377 tag = "v2.1.0",
1378)
1379
1380go_repository(
1381 name = "com_github_coreos_go_semver",
1382 importpath = "github.com/coreos/go-semver",
1383 tag = "v0.3.0",
1384)
1385
1386go_repository(
1387 name = "com_github_coreos_go_systemd",
1388 commit = "95778dfbb74e",
1389 importpath = "github.com/coreos/go-systemd",
1390)
1391
1392go_repository(
1393 name = "com_github_coreos_pkg",
1394 commit = "97fdf19511ea",
1395 importpath = "github.com/coreos/pkg",
1396)
1397
1398go_repository(
1399 name = "com_github_cpuguy83_go_md2man",
1400 importpath = "github.com/cpuguy83/go-md2man",
1401 tag = "v1.0.10",
1402)
1403
1404go_repository(
1405 name = "com_github_creack_pty",
1406 importpath = "github.com/creack/pty",
1407 tag = "v1.1.7",
1408)
1409
1410go_repository(
1411 name = "com_github_daviddengcn_go_colortext",
1412 commit = "511bcaf42ccd",
1413 importpath = "github.com/daviddengcn/go-colortext",
1414)
1415
1416go_repository(
1417 name = "com_github_docker_spdystream",
1418 commit = "449fdfce4d96",
1419 importpath = "github.com/docker/spdystream",
1420)
1421
1422go_repository(
1423 name = "com_github_elazarl_goproxy",
1424 commit = "c4fc26588b6e",
1425 importpath = "github.com/elazarl/goproxy",
1426)
1427
1428go_repository(
1429 name = "com_github_emicklei_go_restful",
1430 importpath = "github.com/emicklei/go-restful",
1431 tag = "v2.9.5",
1432)
1433
1434go_repository(
1435 name = "com_github_exponent_io_jsonpath",
1436 commit = "d6023ce2651d",
1437 importpath = "github.com/exponent-io/jsonpath",
1438)
1439
1440go_repository(
1441 name = "com_github_fatih_camelcase",
1442 importpath = "github.com/fatih/camelcase",
1443 tag = "v1.0.0",
1444)
1445
1446go_repository(
1447 name = "com_github_fatih_color",
1448 importpath = "github.com/fatih/color",
1449 tag = "v1.7.0",
1450)
1451
1452go_repository(
1453 name = "com_github_globalsign_mgo",
1454 commit = "eeefdecb41b8",
1455 importpath = "github.com/globalsign/mgo",
1456)
1457
1458go_repository(
1459 name = "com_github_go_kit_kit",
1460 importpath = "github.com/go-kit/kit",
1461 tag = "v0.8.0",
1462)
1463
1464go_repository(
1465 name = "com_github_go_logfmt_logfmt",
1466 importpath = "github.com/go-logfmt/logfmt",
1467 tag = "v0.3.0",
1468)
1469
1470go_repository(
1471 name = "com_github_go_logr_logr",
1472 importpath = "github.com/go-logr/logr",
1473 tag = "v0.1.0",
1474)
1475
1476go_repository(
1477 name = "com_github_go_stack_stack",
1478 importpath = "github.com/go-stack/stack",
1479 tag = "v1.8.0",
1480)
1481
1482go_repository(
1483 name = "com_github_golang_groupcache",
1484 commit = "02826c3e7903",
1485 importpath = "github.com/golang/groupcache",
1486)
1487
1488go_repository(
1489 name = "com_github_golangplus_bytes",
1490 commit = "45c989fe5450",
1491 importpath = "github.com/golangplus/bytes",
1492)
1493
1494go_repository(
1495 name = "com_github_golangplus_fmt",
1496 commit = "2a5d6d7d2995",
1497 importpath = "github.com/golangplus/fmt",
1498)
1499
1500go_repository(
1501 name = "com_github_golangplus_testing",
1502 commit = "af21d9c3145e",
1503 importpath = "github.com/golangplus/testing",
1504)
1505
1506go_repository(
1507 name = "com_github_google_martian",
1508 importpath = "github.com/google/martian",
1509 tag = "v2.1.0",
1510)
1511
1512go_repository(
1513 name = "com_github_google_pprof",
1514 commit = "3ea8567a2e57",
1515 importpath = "github.com/google/pprof",
1516)
1517
1518go_repository(
1519 name = "com_github_google_uuid",
1520 importpath = "github.com/google/uuid",
1521 tag = "v1.1.1",
1522)
1523
1524go_repository(
1525 name = "com_github_googleapis_gax_go_v2",
1526 importpath = "github.com/googleapis/gax-go/v2",
1527 tag = "v2.0.4",
1528)
1529
1530go_repository(
1531 name = "com_github_gorilla_websocket",
1532 importpath = "github.com/gorilla/websocket",
1533 tag = "v1.4.0",
1534)
1535
1536go_repository(
1537 name = "com_github_grpc_ecosystem_go_grpc_middleware",
1538 commit = "f849b5445de4",
1539 importpath = "github.com/grpc-ecosystem/go-grpc-middleware",
1540)
1541
1542go_repository(
1543 name = "com_github_grpc_ecosystem_go_grpc_prometheus",
1544 importpath = "github.com/grpc-ecosystem/go-grpc-prometheus",
1545 tag = "v1.2.0",
1546)
1547
1548go_repository(
1549 name = "com_github_hashicorp_golang_lru",
1550 importpath = "github.com/hashicorp/golang-lru",
1551 tag = "v0.5.1",
1552)
1553
1554go_repository(
1555 name = "com_github_hashicorp_hcl",
1556 importpath = "github.com/hashicorp/hcl",
1557 tag = "v1.0.0",
1558)
1559
1560go_repository(
1561 name = "com_github_jonboulle_clockwork",
1562 importpath = "github.com/jonboulle/clockwork",
1563 tag = "v0.1.0",
1564)
1565
1566go_repository(
1567 name = "com_github_jstemmer_go_junit_report",
1568 commit = "af01ea7f8024",
1569 importpath = "github.com/jstemmer/go-junit-report",
1570)
1571
1572go_repository(
1573 name = "com_github_julienschmidt_httprouter",
1574 importpath = "github.com/julienschmidt/httprouter",
1575 tag = "v1.2.0",
1576)
1577
1578go_repository(
1579 name = "com_github_kisielk_errcheck",
1580 importpath = "github.com/kisielk/errcheck",
1581 tag = "v1.2.0",
1582)
1583
1584go_repository(
1585 name = "com_github_konsorten_go_windows_terminal_sequences",
1586 importpath = "github.com/konsorten/go-windows-terminal-sequences",
1587 tag = "v1.0.1",
1588)
1589
1590go_repository(
1591 name = "com_github_kr_logfmt",
1592 commit = "b84e30acd515",
1593 importpath = "github.com/kr/logfmt",
1594)
1595
1596go_repository(
1597 name = "com_github_liggitt_tabwriter",
1598 commit = "89fcab3d43de",
1599 importpath = "github.com/liggitt/tabwriter",
1600)
1601
1602go_repository(
1603 name = "com_github_lithammer_dedent",
1604 importpath = "github.com/lithammer/dedent",
1605 tag = "v1.1.0",
1606)
1607
1608go_repository(
1609 name = "com_github_magiconair_properties",
1610 importpath = "github.com/magiconair/properties",
1611 tag = "v1.8.0",
1612)
1613
1614go_repository(
1615 name = "com_github_makenowjust_heredoc",
1616 commit = "bb23615498cd",
1617 importpath = "github.com/MakeNowJust/heredoc",
1618)
1619
1620go_repository(
1621 name = "com_github_mattn_go_colorable",
1622 importpath = "github.com/mattn/go-colorable",
1623 tag = "v0.0.9",
1624)
1625
1626go_repository(
1627 name = "com_github_mattn_go_runewidth",
1628 importpath = "github.com/mattn/go-runewidth",
1629 tag = "v0.0.2",
1630)
1631
1632go_repository(
1633 name = "com_github_mitchellh_go_homedir",
1634 importpath = "github.com/mitchellh/go-homedir",
1635 tag = "v1.1.0",
1636)
1637
1638go_repository(
1639 name = "com_github_morikuni_aec",
1640 importpath = "github.com/morikuni/aec",
1641 tag = "v1.0.0",
1642)
1643
1644go_repository(
1645 name = "com_github_munnerz_goautoneg",
1646 commit = "a7dc8b61c822",
1647 importpath = "github.com/munnerz/goautoneg",
1648)
1649
1650go_repository(
1651 name = "com_github_mwitkow_go_conntrack",
1652 commit = "cc309e4a2223",
1653 importpath = "github.com/mwitkow/go-conntrack",
1654)
1655
1656go_repository(
1657 name = "com_github_mxk_go_flowrate",
1658 commit = "cca7078d478f",
1659 importpath = "github.com/mxk/go-flowrate",
1660)
1661
1662go_repository(
1663 name = "com_github_nytimes_gziphandler",
1664 commit = "56545f4a5d46",
1665 importpath = "github.com/NYTimes/gziphandler",
1666)
1667
1668go_repository(
1669 name = "com_github_olekukonko_tablewriter",
1670 commit = "a0225b3f23b5",
1671 importpath = "github.com/olekukonko/tablewriter",
1672)
1673
1674go_repository(
1675 name = "com_github_pelletier_go_toml",
1676 importpath = "github.com/pelletier/go-toml",
1677 tag = "v1.2.0",
1678)
1679
1680go_repository(
1681 name = "com_github_pquerna_cachecontrol",
1682 commit = "0dec1b30a021",
1683 importpath = "github.com/pquerna/cachecontrol",
1684)
1685
1686go_repository(
1687 name = "com_github_remyoudompheng_bigfft",
1688 commit = "52369c62f446",
1689 importpath = "github.com/remyoudompheng/bigfft",
1690)
1691
1692go_repository(
1693 name = "com_github_rogpeppe_fastuuid",
1694 commit = "6724a57986af",
1695 importpath = "github.com/rogpeppe/fastuuid",
1696)
1697
1698go_repository(
1699 name = "com_github_russross_blackfriday",
1700 importpath = "github.com/russross/blackfriday",
1701 tag = "v1.5.2",
1702)
1703
1704go_repository(
1705 name = "com_github_soheilhy_cmux",
1706 importpath = "github.com/soheilhy/cmux",
1707 tag = "v0.1.4",
1708)
1709
1710go_repository(
1711 name = "com_github_spf13_afero",
1712 importpath = "github.com/spf13/afero",
1713 tag = "v1.2.2",
1714)
1715
1716go_repository(
1717 name = "com_github_spf13_cast",
1718 importpath = "github.com/spf13/cast",
1719 tag = "v1.3.0",
1720)
1721
1722go_repository(
1723 name = "com_github_spf13_jwalterweatherman",
1724 importpath = "github.com/spf13/jwalterweatherman",
1725 tag = "v1.0.0",
1726)
1727
1728go_repository(
1729 name = "com_github_spf13_viper",
1730 importpath = "github.com/spf13/viper",
1731 tag = "v1.3.2",
1732)
1733
1734go_repository(
1735 name = "com_github_tmc_grpc_websocket_proxy",
1736 commit = "89b8d40f7ca8",
1737 importpath = "github.com/tmc/grpc-websocket-proxy",
1738)
1739
1740go_repository(
1741 name = "com_github_ugorji_go_codec",
1742 commit = "d75b2dcb6bc8",
1743 importpath = "github.com/ugorji/go/codec",
1744)
1745
1746go_repository(
1747 name = "com_github_xiang90_probing",
1748 commit = "43a291ad63a2",
1749 importpath = "github.com/xiang90/probing",
1750)
1751
1752go_repository(
1753 name = "com_github_xlab_handysort",
1754 commit = "fb3537ed64a1",
1755 importpath = "github.com/xlab/handysort",
1756)
1757
1758go_repository(
1759 name = "com_github_xordataexchange_crypt",
1760 commit = "b2862e3d0a77",
1761 importpath = "github.com/xordataexchange/crypt",
1762)
1763
1764go_repository(
1765 name = "in_gopkg_alecthomas_kingpin_v2",
1766 importpath = "gopkg.in/alecthomas/kingpin.v2",
1767 tag = "v2.2.6",
1768)
1769
1770go_repository(
1771 name = "in_gopkg_cheggaaa_pb_v1",
1772 importpath = "gopkg.in/cheggaaa/pb.v1",
1773 tag = "v1.0.25",
1774)
1775
1776go_repository(
1777 name = "in_gopkg_natefinch_lumberjack_v2",
1778 importpath = "gopkg.in/natefinch/lumberjack.v2",
1779 tag = "v2.0.0",
1780)
1781
1782go_repository(
1783 name = "in_gopkg_resty_v1",
1784 importpath = "gopkg.in/resty.v1",
1785 tag = "v1.12.0",
1786)
1787
1788go_repository(
1789 name = "in_gopkg_square_go_jose_v2",
1790 importpath = "gopkg.in/square/go-jose.v2",
1791 tag = "v2.2.2",
1792)
1793
1794go_repository(
1795 name = "io_etcd_go_bbolt",
1796 importpath = "go.etcd.io/bbolt",
1797 tag = "v1.3.3",
1798)
1799
1800go_repository(
1801 name = "io_etcd_go_etcd",
1802 commit = "3cf2f69b5738",
1803 importpath = "go.etcd.io/etcd",
1804)
1805
1806go_repository(
1807 name = "io_k8s_apiserver",
1808 commit = "f2537b84c964",
1809 importpath = "k8s.io/apiserver",
1810)
1811
1812go_repository(
1813 name = "io_k8s_cli_runtime",
1814 commit = "ec04ad4dbd24",
1815 importpath = "k8s.io/cli-runtime",
1816)
1817
1818go_repository(
1819 name = "io_k8s_code_generator",
1820 commit = "2a85f169f05f",
1821 importpath = "k8s.io/code-generator",
1822)
1823
1824go_repository(
1825 name = "io_k8s_component_base",
1826 commit = "ea09a2678486",
1827 importpath = "k8s.io/component-base",
1828)
1829
1830go_repository(
1831 name = "io_k8s_gengo",
1832 commit = "26a664648505",
1833 importpath = "k8s.io/gengo",
1834)
1835
1836go_repository(
1837 name = "io_k8s_kubectl",
1838 commit = "fbc5d36fee2d",
1839 importpath = "k8s.io/kubectl",
1840)
1841
1842go_repository(
1843 name = "io_k8s_metrics",
1844 commit = "dea8d0e6b550",
1845 importpath = "k8s.io/metrics",
1846)
1847
1848go_repository(
1849 name = "io_k8s_sigs_kustomize",
1850 importpath = "sigs.k8s.io/kustomize",
1851 tag = "v2.0.3",
1852)
1853
1854go_repository(
1855 name = "io_k8s_sigs_structured_merge_diff",
1856 commit = "b1b620dd3f06",
1857 importpath = "sigs.k8s.io/structured-merge-diff",
1858)
1859
1860go_repository(
1861 name = "org_golang_x_exp",
1862 commit = "4b39c73a6495",
1863 importpath = "golang.org/x/exp",
1864)
1865
1866go_repository(
1867 name = "org_golang_x_image",
1868 commit = "0694c2d4d067",
1869 importpath = "golang.org/x/image",
1870)
1871
1872go_repository(
1873 name = "org_golang_x_mobile",
1874 commit = "d3739f865fa6",
1875 importpath = "golang.org/x/mobile",
1876)
1877
1878go_repository(
1879 name = "org_golang_x_xerrors",
1880 commit = "a985d3407aa7",
1881 importpath = "golang.org/x/xerrors",
1882)
1883
1884go_repository(
1885 name = "org_gonum_v1_gonum",
1886 commit = "3d26580ed485",
1887 importpath = "gonum.org/v1/gonum",
1888)
1889
1890go_repository(
1891 name = "org_gonum_v1_netlib",
1892 commit = "76723241ea4e",
1893 importpath = "gonum.org/v1/netlib",
1894)
1895
1896go_repository(
1897 name = "org_modernc_cc",
1898 importpath = "modernc.org/cc",
1899 tag = "v1.0.0",
1900)
1901
1902go_repository(
1903 name = "org_modernc_golex",
1904 importpath = "modernc.org/golex",
1905 tag = "v1.0.0",
1906)
1907
1908go_repository(
1909 name = "org_modernc_mathutil",
1910 importpath = "modernc.org/mathutil",
1911 tag = "v1.0.0",
1912)
1913
1914go_repository(
1915 name = "org_modernc_strutil",
1916 importpath = "modernc.org/strutil",
1917 tag = "v1.0.0",
1918)
1919
1920go_repository(
1921 name = "org_modernc_xc",
1922 importpath = "modernc.org/xc",
1923 tag = "v1.0.0",
1924)
1925
1926go_repository(
1927 name = "org_uber_go_atomic",
1928 importpath = "go.uber.org/atomic",
1929 tag = "v1.3.2",
1930)
1931
1932go_repository(
1933 name = "org_uber_go_multierr",
1934 importpath = "go.uber.org/multierr",
1935 tag = "v1.1.0",
1936)
1937
1938go_repository(
1939 name = "org_uber_go_zap",
1940 importpath = "go.uber.org/zap",
1941 tag = "v1.10.0",
1942)
Sergiusz Bazanskic315aac2020-01-02 16:43:39 +01001943
1944go_repository(
1945 name = "com_github_dgraph_io_ristretto",
1946 commit = "83508260cb49a2c3261c2774c991870fd18b5a1b",
1947 importpath = "github.com/dgraph-io/ristretto",
1948)
1949
1950go_repository(
1951 name = "com_github_cespare_xxhash",
1952 commit = "d7df74196a9e781ede915320c11c378c1b2f3a1f",
1953 importpath = "github.com/cespare/xxhash",
1954)
1955
1956go_repository(
1957 name = "com_github_ulule_limiter_v3",
1958 commit = "6911899e37a5788df86f770b3f85c1c3eb0313d5",
1959 importpath = "github.com/ulule/limiter/v3",
1960 remote = "https://github.com/ulule/limiter",
1961 vcs = "git",
1962)
Sergiusz Bazanskia8854882020-01-05 00:34:38 +01001963
1964go_repository(
1965 name = "com_github_go_telegram_bot_api_telegram_bot_api",
1966 commit = "b33efeebc78563cfeddf19563781cffb16aaabdf",
1967 importpath = "github.com/go-telegram-bot-api/telegram-bot-api",
1968)
1969
1970go_repository(
1971 name = "com_github_technoweenie_multipartstreamer",
1972 commit = "a90a01d73ae432e2611d178c18367fbaa13e0154",
1973 importpath = "github.com/technoweenie/multipartstreamer",
1974)
1975
1976go_repository(
1977 name = "in_gopkg_irc_v3",
1978 commit = "d07dcb9293789fdc99c797d3499a5799bc343b86",
1979 importpath = "gopkg.in/irc.v3",
1980)
Sergiusz Bazanskic881cf32020-04-08 20:03:12 +02001981
1982go_repository(
1983 name = "in_gopkg_russross_blackfriday_v2",
1984 commit = "d3b5b032dc8e8927d31a5071b56e14c89f045135",
1985 importpath = "gopkg.in/russross/blackfriday.v2",
1986)
1987
1988go_repository(
1989 name = "com_github_shurcool_sanitized_anchor_name",
1990 commit = "7bfe4c7ecddb3666a94b053b422cdd8f5aaa3615",
1991 importpath = "github.com/shurcooL/sanitized_anchor_name",
1992)
Sergiusz Bazanski4c0e9b52020-04-08 22:42:33 +02001993
1994go_repository(
1995 name = "com_github_go_git_go_billy_v5",
1996 commit = "d7a8afccaed297c30f8dff5724dbe422b491dd0d",
1997 importpath = "github.com/go-git/go-billy/v5",
1998 remote = "https://github.com/go-git/go-billy",
1999 vcs = "git",
2000)
2001
2002go_repository(
2003 name = "com_github_go_git_go_git_v5",
2004 commit = "3127ad9a44a2ee935502816065dfe39f494f583d",
2005 importpath = "github.com/go-git/go-git/v5",
2006 remote = "https://github.com/go-git/go-git",
2007 vcs = "git",
2008 build_extra_args = [
2009 "-known_import=github.com/go-git/go-billy/v5",
2010 ],
2011)
2012
2013go_repository(
2014 name = "com_github_go_git_gcfg",
2015 commit = "22f18f9a74d34e3b1a7d59cfa33043bc50ebe376",
2016 importpath = "github.com/go-git/gcfg",
2017)
2018
2019go_repository(
2020 name = "in_gopkg_warnings_v0",
2021 commit = "ec4a0fea49c7b46c2aeb0b51aac55779c607e52b",
2022 importpath = "gopkg.in/warnings.v0",
2023)
2024
2025go_repository(
2026 name = "com_github_emirpasic_gods",
2027 commit = "80e934ed68b9084f386ae25f74f839aaecfb54d8",
2028 importpath = "github.com/emirpasic/gods",
2029)
2030
2031go_repository(
2032 name = "com_github_jbenet_go_context",
2033 commit = "d14ea06fba99483203c19d92cfcd13ebe73135f4",
2034 importpath = "github.com/jbenet/go-context",
2035)
2036
2037go_repository(
2038 name = "com_github_kevinburke_ssh_config",
2039 commit = "01f96b0aa0cdcaa93f9495f89bbc6cb5a992ce6e",
2040 importpath = "github.com/kevinburke/ssh_config",
2041)
2042
2043go_repository(
2044 name = "com_github_xanzy_ssh_agent",
2045 commit = "6a3e2ff9e7c564f36873c2e36413f634534f1c44",
2046 importpath = "github.com/xanzy/ssh-agent",
2047)
Sergiusz Bazanski8adbd492020-04-10 21:20:53 +02002048
2049go_repository(
2050 name = "com_github_gabriel_vasile_mimetype",
2051 commit = "06500030e7d26826f68caa5ca7d98c315c4caa28",
2052 importpath = "github.com/gabriel-vasile/mimetype",
2053)
Sergiusz Bazanskide3d3fa2020-05-31 00:12:11 +02002054go_repository(
2055 name = "com_github_kevinburke_go_bindata",
2056 commit = "a606d617e1d1546a2342de6fc4ed95c78e171d68",
2057 importpath = "github.com/kevinburke/go-bindata",
2058)