blob: 138b93a0573f6f42fd01822cca4378f2b46ed3f3 [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 Bazanski1e6b52a2019-05-15 19:08:25 +0200108# Nix rules
109http_archive(
110 name = "io_tweag_rules_nixpkgs",
Sergiusz Bazanski96c428f2019-11-17 19:00:46 +0100111 strip_prefix = "rules_nixpkgs-33c50ba64c11dddb95823d12f6b1324083cc5c43",
112 urls = ["https://github.com/tweag/rules_nixpkgs/archive/33c50ba64c11dddb95823d12f6b1324083cc5c43.tar.gz"],
113 sha256 = "91fedd5151bbd9ef89efc39e2172921bd7036c68cff54712a5df8ddf62bd6922",
Sergiusz Bazanski1e6b52a2019-05-15 19:08:25 +0200114)
115
116# Nix packages
117
118load("@io_tweag_rules_nixpkgs//nixpkgs:nixpkgs.bzl", "nixpkgs_git_repository", "nixpkgs_package")
Sergiusz Bazanskic2924102019-06-30 17:35:57 +0200119
Sergiusz Bazanski1e6b52a2019-05-15 19:08:25 +0200120nixpkgs_git_repository(
121 name = "nixpkgs",
122 revision = "2f1f9a9fe8a3c22f0677733523eaf6bd33995d50",
123)
124
125nixpkgs_package(
126 name = "nixops",
Sergiusz Bazanski44116ea2019-05-18 16:26:56 +0200127 attribute_path = "nixops",
Sergiusz Bazanskic2924102019-06-30 17:35:57 +0200128 repositories = {"nixpkgs": "@nixpkgs"},
Sergiusz Bazanski1e6b52a2019-05-15 19:08:25 +0200129)
130
Sergiusz Bazanski3e597182019-04-19 14:40:47 +0200131# Python rules
Serge Bazanski2ce36762019-07-14 16:29:52 +0200132
Sergiusz Bazanskide061802019-01-13 21:14:02 +0100133git_repository(
Serge Bazanski2ce36762019-07-14 16:29:52 +0200134 name = "com_apt_itude_rules_pip",
Sergiusz Bazanski5f9b1ec2019-09-22 02:19:18 +0200135 commit = "186bade4f054c0a9be7037585584c9c572cba483",
Serge Bazanski2ce36762019-07-14 16:29:52 +0200136 remote = "https://github.com/apt-itude/rules_pip.git",
Sergiusz Bazanskide061802019-01-13 21:14:02 +0100137)
138
139# Python dependencies
Serge Bazanski2ce36762019-07-14 16:29:52 +0200140load("@com_apt_itude_rules_pip//rules:dependencies.bzl", "pip_rules_dependencies")
Sergiusz Bazanskide061802019-01-13 21:14:02 +0100141
Serge Bazanski2ce36762019-07-14 16:29:52 +0200142pip_rules_dependencies()
Sergiusz Bazanskide061802019-01-13 21:14:02 +0100143
Serge Bazanski2ce36762019-07-14 16:29:52 +0200144load("@com_apt_itude_rules_pip//rules:repository.bzl", "pip_repository")
145
146pip_repository(
Sergiusz Bazanski5f9b1ec2019-09-22 02:19:18 +0200147 name = "pydeps",
148 requirements = "//third_party/py:requirements-lock.json",
Sergiusz Bazanskide061802019-01-13 21:14:02 +0100149)
150
Sergiusz Bazanski5f9b1ec2019-09-22 02:19:18 +0200151load("@pydeps//:requirements.bzl", "pip_install")
152
153pip_install()
154
Sergiusz Bazanski65865332019-05-18 16:23:45 +0200155# Docker base images
156
157load("@io_bazel_rules_docker//container:container.bzl", "container_pull")
Sergiusz Bazanskia7e26cc2019-06-21 20:38:35 +0200158
Sergiusz Bazanski65865332019-05-18 16:23:45 +0200159container_pull(
160 name = "prodimage-bionic",
Serge Bazanskib2d6b112019-07-30 13:07:04 +0200161 registry = "registry.k0.hswaw.net",
162 repository = "q3k/prodimage",
Serge Bazanskiec71cb52019-08-22 18:13:13 +0200163 tag = "20190822-1227",
164 digest = "sha256:1cd1f84169b8e1414a5d511b42909f2d540831c67b6799ae9af8cd6a80d75b5f",
Sergiusz Bazanski65865332019-05-18 16:23:45 +0200165)
166
Sergiusz Bazanskia7e26cc2019-06-21 20:38:35 +0200167container_pull(
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200168 name = "gerrit-3.0.8",
Sergiusz Bazanskia7e26cc2019-06-21 20:38:35 +0200169 registry = "index.docker.io",
170 repository = "gerritcodereview/gerrit",
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200171 tag = "3.0.8-ubuntu18",
172 digest = "sha256:8f58236129e6547d92502a2e9d8f40129f45f15007beaeafb59fed4faffddb3e",
Sergiusz Bazanskia7e26cc2019-06-21 20:38:35 +0200173)
174
Sergiusz Bazanski48050572020-05-10 21:34:10 +0200175# third_party/factorio
176load("//third_party/factorio:factorio.bzl", "factorio_repositories")
177factorio_repositories()
Sergiusz Bazanski59786c52020-04-01 02:05:42 +0200178
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100179
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200180# For devtools/gerrit/gerrit-oauth-provider and gerrit OWNERS plugin
Sergiusz Bazanski573da782019-06-21 19:59:52 +0200181
182git_repository(
183 name = "com_googlesource_gerrit_bazlets",
184 remote = "https://gerrit.googlesource.com/bazlets",
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200185 commit = "1d381f01c853e2c02ae35430a8e294e485635d62",
Sergiusz Bazanski573da782019-06-21 19:59:52 +0200186)
187
188load(
189 "@com_googlesource_gerrit_bazlets//:gerrit_api.bzl",
190 "gerrit_api",
191)
192
193gerrit_api()
194
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +0200195load("@com_googlesource_gerrit_bazlets//tools:maven_jar.bzl", gerrit_maven_jar="maven_jar", GERRIT="GERRIT")
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200196PROLOG_VERS = "1.4.3"
197JACKSON_VER = "2.9.7"
Sergiusz Bazanski573da782019-06-21 19:59:52 +0200198
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +0200199gerrit_maven_jar(
Sergiusz Bazanski573da782019-06-21 19:59:52 +0200200 name = "scribe",
201 artifact = "org.scribe:scribe:1.3.7",
202 sha1 = "583921bed46635d9f529ef5f14f7c9e83367bc6e",
203)
204
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +0200205gerrit_maven_jar(
Sergiusz Bazanski573da782019-06-21 19:59:52 +0200206 name = "commons-codec",
207 artifact = "commons-codec:commons-codec:1.4",
208 sha1 = "4216af16d38465bbab0f3dff8efa14204f7a399a",
209)
210
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +0200211gerrit_maven_jar(
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200212 name = "jackson-core",
213 artifact = "com.fasterxml.jackson.core:jackson-core:" + JACKSON_VER,
214 sha1 = "4b7f0e0dc527fab032e9800ed231080fdc3ac015",
215)
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +0200216gerrit_maven_jar(
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200217 name = "jackson-databind",
218 artifact = "com.fasterxml.jackson.core:jackson-databind:" + JACKSON_VER,
219 sha1 = "e6faad47abd3179666e89068485a1b88a195ceb7",
220)
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +0200221gerrit_maven_jar(
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200222 name = "jackson-annotations",
223 artifact = "com.fasterxml.jackson.core:jackson-annotations:" + JACKSON_VER,
224 sha1 = "4b838e5c4fc17ac02f3293e9a558bb781a51c46d",
225)
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +0200226gerrit_maven_jar(
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200227 name = "jackson-dataformat-yaml",
228 artifact = "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:" + JACKSON_VER,
229 sha1 = "a428edc4bb34a2da98a50eb759c26941d4e85960",
230)
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +0200231gerrit_maven_jar(
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200232 name = "snakeyaml",
233 artifact = "org.yaml:snakeyaml:1.23",
234 sha1 = "ec62d74fe50689c28c0ff5b35d3aebcaa8b5be68",
235)
236
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +0200237gerrit_maven_jar(
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200238 name = "prolog-runtime",
239 artifact = "com.googlecode.prolog-cafe:prolog-runtime:" + PROLOG_VERS,
240 attach_source = False,
241 repository = GERRIT,
242 sha1 = "d5206556cbc76ffeab21313ffc47b586a1efbcbb",
243)
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +0200244gerrit_maven_jar(
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200245 name = "prolog-compiler",
246 artifact = "com.googlecode.prolog-cafe:prolog-compiler:" + PROLOG_VERS,
247 attach_source = False,
248 repository = GERRIT,
249 sha1 = "f37032cf1dec3e064427745bc59da5a12757a3b2",
250)
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +0200251gerrit_maven_jar(
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200252 name = "prolog-io",
253 artifact = "com.googlecode.prolog-cafe:prolog-io:" + PROLOG_VERS,
254 attach_source = False,
255 repository = GERRIT,
256 sha1 = "d02b2640b26f64036b6ba2b45e4acc79281cea17",
257)
258
Sergiusz Bazanski32f8a582020-05-18 00:27:23 +0200259# minecraft spigot/bukkit deps
260# this uses rules_jvm_external vs gerrit's maven_jar because we need SNAPSHOT support
261
262http_archive(
263 name = "io_grpc_grpc_java",
264 sha256 = "446ad7a2e85bbd05406dbf95232c7c49ed90de83b3b60cb2048b0c4c9f254d29",
265 strip_prefix = "grpc-java-1.29.0",
266 url = "https://github.com/grpc/grpc-java/archive/v1.29.0.zip",
267)
268
269RULES_JVM_EXTERNAL_TAG = "3.0"
270RULES_JVM_EXTERNAL_SHA = "62133c125bf4109dfd9d2af64830208356ce4ef8b165a6ef15bbff7460b35c3a"
271
272http_archive(
273 name = "rules_jvm_external",
274 strip_prefix = "rules_jvm_external-%s" % RULES_JVM_EXTERNAL_TAG,
275 sha256 = RULES_JVM_EXTERNAL_SHA,
276 url = "https://github.com/bazelbuild/rules_jvm_external/archive/%s.zip" % RULES_JVM_EXTERNAL_TAG,
277)
278
279load("@rules_jvm_external//:defs.bzl", "maven_install")
280load("@io_grpc_grpc_java//:repositories.bzl", "IO_GRPC_GRPC_JAVA_ARTIFACTS")
281load("@io_grpc_grpc_java//:repositories.bzl", "IO_GRPC_GRPC_JAVA_OVERRIDE_TARGETS")
282
283maven_install(
284 artifacts = [
285 "org.spigotmc:spigot-api:1.15.2-R0.1-SNAPSHOT",
286 "io.grpc:grpc-netty-shaded:1.29.0",
287 "io.grpc:grpc-services:1.29.0",
288 ] + IO_GRPC_GRPC_JAVA_ARTIFACTS,
289 generate_compat_repositories = True,
290 override_targets = IO_GRPC_GRPC_JAVA_OVERRIDE_TARGETS,
291 repositories = [
292 "https://hub.spigotmc.org/nexus/content/repositories/snapshots",
293 "https://oss.sonatype.org/content/repositories/snapshots",
294 "https://repo1.maven.org/maven2/",
295 ],
296 maven_install_json = "//third_party/java:maven_install.json",
297)
298
299load("@maven//:defs.bzl", "pinned_maven_install")
300pinned_maven_install()
301
302load("@maven//:compat.bzl", "compat_repositories")
303compat_repositories()
304
305load("@io_grpc_grpc_java//:repositories.bzl", "grpc_java_repositories")
306grpc_java_repositories()
307
Sergiusz Bazanski222a00a2020-04-12 18:37:21 +0200308# Gerrit OWNERS plugins external repositories
309
310git_repository(
311 name = "com_googlesource_gerrit_plugin_owners",
312 remote = "https://gerrit.googlesource.com/plugins/owners/",
313 commit = "5e691e87b8c00a04d261a8dd313f4d16c54797e8",
314)
315
Sergiusz Bazanski356ea8b2019-07-21 23:56:43 +0200316# For devtools/bazel-cache
317
318git_repository(
319 name = "com_github_buchgr_bazel_remote",
320 remote = "https://github.com/buchgr/bazel-remote.git",
321 commit = "a9374e638411da72a2ef2a83f490e61e2d74a976",
322)
323
324# Go image repos for Docker
325
326load(
327 "@io_bazel_rules_docker//go:image.bzl",
328 go_image_repositories = "repositories",
329)
330
331go_image_repositories()
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100332# Go repositories
333
334go_repository(
335 name = "io_k8s_kubernetes",
336 importpath = "k8s.io/kubernetes",
337 # Get from HTTP instead, this repository is _big_
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100338 urls = ["https://github.com/kubernetes/kubernetes/archive/v1.16.0.tar.gz"],
339 sha256 = "a8b2ee84ce38fa14404d7e56daa87aa2f2fb13e0114fb1150f294c992ab3f36c",
340 strip_prefix = "kubernetes-1.16.0",
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100341)
342
343go_repository(
Sergiusz Bazanski4a024bb2019-05-17 18:10:02 +0200344 name = "io_k8s_repo_infra",
345 commit = "df02ded38f9506e5bbcbf21702034b4fef815f2f",
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100346 importpath = "k8s.io/repo-infra",
347)
348
349go_repository(
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100350 name = "com_github_bitnami_kubecfg",
351 importpath = "github.com/bitnami/kubecfg",
352 vcs = "git",
353 commit = "dddf366990f581132cd046c723d73a2357de2dc8",
354 remote = "https://github.com/q3k/kubecfg",
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100355)
Sergiusz Bazanski07529712019-01-18 01:24:38 +0100356
357go_repository(
358 name = "com_github_projectcalico_calicoctl",
359 importpath = "github.com/projectcalico/calicoctl",
360 # This fork implements explicit Bazel rules
361 remote = "https://github.com/q3k/calicoctl",
362 vcs = "git",
363 commit = "1bc31862f07e7539ca493de9137ed1ad56cc9f43",
364 build_file_generation = "off",
365)
Sergiusz Bazanski9dc4b682019-04-05 23:51:49 +0200366
367go_repository(
368 name = "com_github_shirou_gopsutil",
369 commit = "2cbc9195c892b304060269ef280375236d2fcac9",
370 importpath = "github.com/shirou/gopsutil",
371)
Sergiusz Bazanskiacd001b2019-04-09 13:17:06 +0200372
373go_repository(
374 name = "com_github_cloudflare_cfssl",
375 commit = "768cd563887febaad559b511aaa5964823ccb4ab",
376 importpath = "github.com/cloudflare/cfssl",
377)
Sergiusz Bazanski258686c2019-05-01 12:26:43 +0200378
379go_repository(
380 name = "com_github_mattn_go_sqlite3",
381 commit = "5994cc52dfa89a4ee21ac891b06fbc1ea02c52d3",
382 importpath = "github.com/mattn/go-sqlite3",
383)
384
385go_repository(
386 name = "com_github_sebastiaanklippert_go_wkhtmltopdf",
387 commit = "72a7793efd38728796273861bb27d590cc33d9d4",
388 importpath = "github.com/sebastiaanklippert/go-wkhtmltopdf",
389)
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200390
391go_repository(
392 name = "com_github_ziutek_telnet",
393 commit = "c3b780dc415b28894076b4ec975ea3ea69e3980f",
394 importpath = "github.com/ziutek/telnet",
395)
396
397go_repository(
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200398 name = "com_github_digitalocean_go_netbox",
399 commit = "29433ec527e78486ea0a5758817ab672d977f90e",
400 importpath = "github.com/digitalocean/go-netbox",
401)
402
403go_repository(
404 name = "com_github_cenkalti_backoff",
405 commit = "4b4cebaf850ec58f1bb1fec5bdebdf8501c2bc3f",
406 importpath = "github.com/cenkalti/backoff",
407)
408
409go_repository(
410 name = "ml_vbom_util",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100411 commit = "db5cfe13f5cc",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200412 importpath = "vbom.ml/util",
413)
414
415go_repository(
416 name = "com_github_go_openapi_strfmt",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200417 importpath = "github.com/go-openapi/strfmt",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100418 tag = "v0.19.0",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200419)
420
421go_repository(
422 name = "com_github_go_openapi_swag",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200423 importpath = "github.com/go-openapi/swag",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100424 tag = "v0.19.5",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200425)
426
427go_repository(
428 name = "com_github_go_openapi_errors",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200429 importpath = "github.com/go-openapi/errors",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100430 tag = "v0.19.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200431)
432
433go_repository(
434 name = "com_github_go_openapi_runtime",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200435 importpath = "github.com/go-openapi/runtime",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100436 tag = "v0.19.0",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200437)
438
439go_repository(
440 name = "com_github_go_openapi_validate",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200441 importpath = "github.com/go-openapi/validate",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100442 tag = "v0.19.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200443)
444
445go_repository(
446 name = "com_github_mitchellh_mapstructure",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200447 importpath = "github.com/mitchellh/mapstructure",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100448 tag = "v1.1.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200449)
450
451go_repository(
452 name = "org_mongodb_go_mongo_driver",
453 commit = "9ec4480161a76f5267d56fc836b7f6d357fd9209",
454 importpath = "go.mongodb.org/mongo-driver",
455)
456
457go_repository(
458 name = "in_gopkg_yaml_v2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200459 importpath = "gopkg.in/yaml.v2",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100460 tag = "v2.2.4",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200461)
462
463go_repository(
464 name = "com_github_asaskevich_govalidator",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100465 commit = "f61b66f89f4a",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200466 importpath = "github.com/asaskevich/govalidator",
467)
468
469go_repository(
470 name = "com_github_go_openapi_spec",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200471 importpath = "github.com/go-openapi/spec",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100472 tag = "v0.19.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200473)
474
475go_repository(
476 name = "com_github_mailru_easyjson",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100477 commit = "b2ccc519800e",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200478 importpath = "github.com/mailru/easyjson",
479)
480
481go_repository(
482 name = "com_github_go_openapi_analysis",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200483 importpath = "github.com/go-openapi/analysis",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100484 tag = "v0.19.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200485)
486
487go_repository(
488 name = "com_github_go_openapi_jsonpointer",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200489 importpath = "github.com/go-openapi/jsonpointer",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100490 tag = "v0.19.3",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200491)
492
493go_repository(
494 name = "com_github_go_openapi_loads",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200495 importpath = "github.com/go-openapi/loads",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100496 tag = "v0.19.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200497)
498
499go_repository(
500 name = "com_github_go_openapi_jsonreference",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200501 importpath = "github.com/go-openapi/jsonreference",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100502 tag = "v0.19.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200503)
504
505go_repository(
506 name = "com_github_puerkitobio_purell",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200507 importpath = "github.com/PuerkitoBio/purell",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100508 tag = "v1.1.1",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200509)
510
511go_repository(
512 name = "com_github_puerkitobio_urlesc",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100513 commit = "de5bf2ad4578",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200514 importpath = "github.com/PuerkitoBio/urlesc",
515)
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200516
517go_repository(
518 name = "com_github_abbot_go_http_auth",
519 commit = "860ed7f246ff5abfdbd5c7ce618fd37b49fd3d86",
520 importpath = "github.com/abbot/go-http-auth",
521)
522
523go_repository(
524 name = "com_github_urfave_cli",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200525 importpath = "github.com/urfave/cli",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100526 tag = "v1.20.0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200527)
528
529go_repository(
530 name = "org_golang_x_crypto",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100531 commit = "60c769a6c586",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200532 importpath = "golang.org/x/crypto",
533)
534
535go_repository(
536 name = "org_golang_x_oauth2",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100537 commit = "0f29369cfe45",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200538 importpath = "golang.org/x/oauth2",
539)
540
541go_repository(
542 name = "com_github_djherbis_atime",
543 commit = "2d569978378562c466df74eda2d82900f435c5f4",
544 importpath = "github.com/djherbis/atime",
545)
546
547go_repository(
548 name = "com_google_cloud_go",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200549 importpath = "cloud.google.com/go",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100550 tag = "v0.38.0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200551)
552
553go_repository(
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200554 name = "com_github_stackexchange_wmi",
555 commit = "cbe66965904dbe8a6cd589e2298e5d8b986bd7dd",
556 importpath = "github.com/stackexchange/wmi",
557)
558
559go_repository(
560 name = "com_github_go_ole_go_ole",
561 commit = "938323a72016e9cf84fa5fba7635089efb0ad87f",
562 importpath = "github.com/go-ole/go-ole",
563)
564
565go_repository(
566 name = "com_github_dustin_go_humanize",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200567 importpath = "github.com/dustin/go-humanize",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100568 tag = "v1.0.0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200569)
570
571go_repository(
572 name = "io_k8s_client_go",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100573 commit = "0a8a1d7b7fae",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200574 importpath = "k8s.io/client-go",
575)
576
577go_repository(
578 name = "io_k8s_apimachinery",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200579 build_file_proto_mode = "disable",
Sergiusz Bazanski9d738ce2020-02-21 12:54:05 +0100580 commit = "731dcecc205498f52a21b12e311af095efb4b188",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100581 importpath = "k8s.io/apimachinery",
Sergiusz Bazanski9d738ce2020-02-21 12:54:05 +0100582 patches = ["//third_party/go/k8s-apimachinery:fix-kubernetes-bug-87675.patch"],
583 patch_args = ["-p1"],
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200584)
585
586go_repository(
587 name = "io_k8s_klog",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200588 importpath = "k8s.io/klog",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100589 tag = "v1.0.0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200590)
591
592go_repository(
593 name = "io_k8s_utils",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100594 commit = "e782cd3c129f",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200595 importpath = "k8s.io/utils",
596)
597
598go_repository(
599 name = "com_github_googleapis_gnostic",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100600 commit = "15cf44e552f9",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200601 importpath = "github.com/googleapis/gnostic",
602)
603
604go_repository(
605 name = "io_k8s_api",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200606 build_file_proto_mode = "disable",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100607 commit = "bbc9463b57e5",
608 importpath = "k8s.io/api",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200609)
610
611go_repository(
612 name = "org_golang_x_time",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100613 commit = "9d24e82272b4",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200614 importpath = "golang.org/x/time",
615)
616
617go_repository(
618 name = "com_github_google_gofuzz",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200619 importpath = "github.com/google/gofuzz",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100620 tag = "v1.0.0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200621)
622
623go_repository(
624 name = "io_k8s_sigs_yaml",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200625 importpath = "sigs.k8s.io/yaml",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100626 tag = "v1.1.0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200627)
628
629go_repository(
630 name = "com_github_modern_go_reflect2",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200631 importpath = "github.com/modern-go/reflect2",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100632 tag = "v1.0.1",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200633)
634
635go_repository(
636 name = "com_github_davecgh_go_spew",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200637 importpath = "github.com/davecgh/go-spew",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100638 tag = "v1.1.1",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200639)
640
641go_repository(
642 name = "com_github_json_iterator_go",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200643 importpath = "github.com/json-iterator/go",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100644 tag = "v1.1.8",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200645)
646
647go_repository(
648 name = "com_github_modern_go_concurrent",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100649 commit = "bacd9c7ef1dd",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200650 importpath = "github.com/modern-go/concurrent",
651)
652
653go_repository(
654 name = "in_gopkg_inf_v0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200655 importpath = "gopkg.in/inf.v0",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100656 tag = "v0.9.1",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200657)
Serge Bazanskib2d6b112019-07-30 13:07:04 +0200658
Serge Bazanskibeefe442019-07-30 13:03:03 +0200659go_repository(
660 name = "com_github_cloudflare_cfrpki",
661 commit = "adece784464315db69299ba75e9287c60cd95c69",
662 importpath = "github.com/cloudflare/cfrpki",
663)
664
665go_repository(
666 name = "com_github_prometheus_client_golang",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200667 importpath = "github.com/prometheus/client_golang",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100668 tag = "v1.0.0",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200669)
670
671go_repository(
672 name = "com_github_rs_cors",
673 commit = "db0fe48135e83b5812a5a31be0eea66984b1b521",
674 importpath = "github.com/rs/cors",
675)
676
677go_repository(
678 name = "com_github_cloudflare_gortr",
679 commit = "95270606e8853d9b93f5be46d656d08ec0a4ef09",
680 importpath = "github.com/cloudflare/gortr",
681)
682
683go_repository(
684 name = "com_github_gorilla_mux",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200685 importpath = "github.com/gorilla/mux",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100686 tag = "v1.6.2",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200687)
688
689go_repository(
690 name = "com_github_sirupsen_logrus",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200691 importpath = "github.com/sirupsen/logrus",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100692 tag = "v1.4.2",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200693)
694
695go_repository(
696 name = "com_github_prometheus_common",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200697 importpath = "github.com/prometheus/common",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100698 tag = "v0.4.1",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200699)
700
701go_repository(
702 name = "com_github_beorn7_perks",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200703 importpath = "github.com/beorn7/perks",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100704 tag = "v1.0.0",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200705)
706
707go_repository(
708 name = "com_github_prometheus_client_model",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100709 commit = "fd36f4220a90",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200710 importpath = "github.com/prometheus/client_model",
711)
712
713go_repository(
714 name = "com_github_prometheus_procfs",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200715 importpath = "github.com/prometheus/procfs",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100716 tag = "v0.0.2",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200717)
718
719go_repository(
720 name = "com_github_matttproud_golang_protobuf_extensions",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200721 importpath = "github.com/matttproud/golang_protobuf_extensions",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100722 tag = "v1.0.1",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200723)
Sergiusz Bazanski6eaaaf92019-08-02 01:25:31 +0200724
725go_repository(
Sergiusz Bazanski30317b42019-08-01 16:50:41 +0200726 name = "com_github_jmoiron_sqlx",
727 commit = "38398a30ed8516ffda617a04c822de09df8a3ec5",
728 importpath = "github.com/jmoiron/sqlx",
729)
730
731go_repository(
732 name = "com_github_lib_pq",
733 commit = "3427c32cb71afc948325f299f040e53c1dd78979",
734 importpath = "github.com/lib/pq",
735)
736
737go_repository(
738 name = "com_github_gchaincl_sqlhooks",
739 commit = "1932c8dd22f2283687586008bf2d58c2c5c014d0",
740 importpath = "github.com/gchaincl/sqlhooks",
741)
742
743go_repository(
744 name = "com_github_golang_migrate_migrate_v4",
745 commit = "e93eaeb3fe21ce2ccc1365277a01863e6bc84d9c",
746 importpath = "github.com/golang-migrate/migrate/v4",
747 remote = "https://github.com/golang-migrate/migrate",
748 vcs = "git",
749)
750
751go_repository(
752 name = "com_github_hashicorp_go_multierror",
753 commit = "bdca7bb83f603b80ef756bb953fe1dafa9cd00a2",
754 importpath = "github.com/hashicorp/go-multierror",
755)
756
757go_repository(
758 name = "com_github_hashicorp_errwrap",
759 commit = "8a6fb523712970c966eefc6b39ed2c5e74880354",
760 importpath = "github.com/hashicorp/errwrap",
761)
762
763go_repository(
764 name = "com_github_cockroachdb_cockroach_go",
765 commit = "e0a95dfd547cc9c3ebaaba1a12c2afe4bf621ac5",
766 importpath = "github.com/cockroachdb/cockroach-go",
767)
768
769go_repository(
770 name = "com_github_jackc_pgx",
771 commit = "6954c15ad0bd3c9aa6dd1b190732b020379beb28",
772 importpath = "github.com/jackc/pgx",
773)
774
775go_repository(
Sergiusz Bazanski6eaaaf92019-08-02 01:25:31 +0200776 name = "com_github_golang_collections_go_datastructures",
777 commit = "59788d5eb2591d3497ffb8fafed2f16fe00e7775",
778 importpath = "github.com/golang-collections/go-datastructures",
779)
780
781go_repository(
782 name = "com_github_go_test_deep",
783 commit = "cf67d735e69b4a4d50cdf571a92b0144786080f7",
784 importpath = "github.com/go-test/deep",
785)
Sergiusz Bazanski1fad2e52019-08-01 20:16:27 +0200786
787go_repository(
788 name = "com_github_sethvargo_go_password",
789 commit = "68ac5879751a7105834296859f8c1bf70b064675",
790 importpath = "github.com/sethvargo/go-password",
791)
Sergiusz Bazanskib13b7ff2019-08-29 20:12:24 +0200792
793go_repository(
794 name = "in_gopkg_ldap_v3",
795 commit = "9f0d712775a0973b7824a1585a86a4ea1d5263d9",
796 importpath = "gopkg.in/ldap.v3",
797)
798
799go_repository(
800 name = "in_gopkg_asn1_ber_v1",
801 commit = "f715ec2f112d1e4195b827ad68cf44017a3ef2b1",
802 importpath = "gopkg.in/asn1-ber.v1",
803)
Sergiusz Bazanski47b7e852019-09-26 18:32:39 +0200804
805go_repository(
806 name = "com_github_q3k_cursedjsonrpc",
807 commit = "304f0561c9162a2696f3ae7c96f3404324177ab8",
808 importpath = "github.com/q3k/cursedjsonrpc",
809)
810
811go_repository(
812 name = "com_github_q3k_cursedjson",
813 commit = "af0e3abb1bcef7197b3b9f91d7d094e6528a2d05",
814 importpath = "github.com/q3k/cursedjson",
815)
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100816
817go_repository(
818 name = "co_honnef_go_tools",
819 commit = "ea95bdfd59fc",
820 importpath = "honnef.co/go/tools",
821)
822
823go_repository(
824 name = "com_github_azure_go_ansiterm",
825 commit = "d6e3b3328b78",
826 importpath = "github.com/Azure/go-ansiterm",
827)
828
829go_repository(
830 name = "com_github_azure_go_autorest",
831 importpath = "github.com/Azure/go-autorest",
832 tag = "v11.5.0",
833)
834
835local_repository(
836 name = "com_github_census_instrumentation_opencensus_proto",
837 path = "./third_party/go/opencensus-proto",
838)
839
840go_repository(
841 name = "com_github_client9_misspell",
842 importpath = "github.com/client9/misspell",
843 tag = "v0.3.4",
844)
845
846go_repository(
847 name = "com_github_containerd_continuity",
848 commit = "7f53d412b9eb",
849 importpath = "github.com/containerd/continuity",
850)
851
852go_repository(
853 name = "com_github_coreos_clair",
854 commit = "44ae4bc9590a",
855 importpath = "github.com/coreos/clair",
856)
857
858go_repository(
859 name = "com_github_dgrijalva_jwt_go",
860 importpath = "github.com/dgrijalva/jwt-go",
861 tag = "v3.2.0",
862)
863
864go_repository(
865 name = "com_github_docker_cli",
866 commit = "54c19e67f69c",
867 importpath = "github.com/docker/cli",
868)
869
870go_repository(
871 name = "com_github_docker_distribution",
872 importpath = "github.com/docker/distribution",
873 tag = "v2.7.1",
874)
875
876go_repository(
877 name = "com_github_docker_docker",
878 commit = "be7ac8be2ae0",
879 importpath = "github.com/docker/docker",
880)
881
882go_repository(
883 name = "com_github_docker_docker_ce",
884 commit = "f53bd8bb8e43",
885 importpath = "github.com/docker/docker-ce",
886)
887
888go_repository(
889 name = "com_github_docker_docker_credential_helpers",
890 importpath = "github.com/docker/docker-credential-helpers",
891 tag = "v0.6.1",
892)
893
894go_repository(
895 name = "com_github_docker_go_connections",
896 commit = "97c2040d34df",
897 importpath = "github.com/docker/go-connections",
898)
899
900go_repository(
901 name = "com_github_docker_go_metrics",
902 commit = "399ea8c73916",
903 importpath = "github.com/docker/go-metrics",
904)
905
906go_repository(
907 name = "com_github_docker_go_units",
908 importpath = "github.com/docker/go-units",
909 tag = "v0.3.3",
910)
911
912go_repository(
913 name = "com_github_docker_libtrust",
914 commit = "aabc10ec26b7",
915 importpath = "github.com/docker/libtrust",
916)
917
918go_repository(
919 name = "com_github_elazarl_go_bindata_assetfs",
920 commit = "38087fe4dafb",
921 importpath = "github.com/elazarl/go-bindata-assetfs",
922)
923
924go_repository(
925 name = "com_github_evanphx_json_patch",
926 importpath = "github.com/evanphx/json-patch",
927 tag = "v4.2.0",
928)
929
930go_repository(
931 name = "com_github_fernet_fernet_go",
932 commit = "9eac43b88a5e",
933 importpath = "github.com/fernet/fernet-go",
934)
935
936go_repository(
937 name = "com_github_fsnotify_fsnotify",
938 importpath = "github.com/fsnotify/fsnotify",
939 tag = "v1.4.7",
940)
941
942go_repository(
943 name = "com_github_genuinetools_pkg",
944 commit = "1c141f661797",
945 importpath = "github.com/genuinetools/pkg",
946)
947
948go_repository(
949 name = "com_github_genuinetools_reg",
950 commit = "d959057b30da",
951 importpath = "github.com/genuinetools/reg",
952)
953
954go_repository(
955 name = "com_github_ghodss_yaml",
956 importpath = "github.com/ghodss/yaml",
957 tag = "v1.0.0",
958)
959
960go_repository(
961 name = "com_github_gogo_protobuf",
962 commit = "65acae22fc9d",
963 importpath = "github.com/gogo/protobuf",
964)
965
966go_repository(
967 name = "com_github_golang_glog",
968 commit = "23def4e6c14b",
969 importpath = "github.com/golang/glog",
970)
971
972go_repository(
973 name = "com_github_golang_mock",
974 importpath = "github.com/golang/mock",
975 tag = "v1.2.0",
976)
977
978go_repository(
979 name = "com_github_golang_protobuf",
980 importpath = "github.com/golang/protobuf",
981 tag = "v1.3.2",
982)
983
984go_repository(
985 name = "com_github_google_btree",
986 importpath = "github.com/google/btree",
987 tag = "v1.0.0",
988)
989
990go_repository(
991 name = "com_github_google_go_cmp",
992 importpath = "github.com/google/go-cmp",
993 tag = "v0.3.0",
994)
995
996go_repository(
997 name = "com_github_google_go_jsonnet",
998 importpath = "github.com/google/go-jsonnet",
999 tag = "v0.12.1",
1000)
1001
1002go_repository(
1003 name = "com_github_gophercloud_gophercloud",
1004 importpath = "github.com/gophercloud/gophercloud",
1005 tag = "v0.1.0",
1006)
1007
1008go_repository(
1009 name = "com_github_gorilla_context",
1010 importpath = "github.com/gorilla/context",
1011 tag = "v1.1.1",
1012)
1013
1014go_repository(
1015 name = "com_github_gregjones_httpcache",
1016 commit = "9cad4c3443a7",
1017 importpath = "github.com/gregjones/httpcache",
1018)
1019
1020go_repository(
1021 name = "com_github_grpc_ecosystem_grpc_gateway",
1022 importpath = "github.com/grpc-ecosystem/grpc-gateway",
1023 tag = "v1.9.5",
1024)
1025
1026go_repository(
1027 name = "com_github_hpcloud_tail",
1028 importpath = "github.com/hpcloud/tail",
1029 tag = "v1.0.0",
1030)
1031
1032go_repository(
1033 name = "com_github_imdario_mergo",
1034 importpath = "github.com/imdario/mergo",
1035 tag = "v0.3.5",
1036)
1037
1038go_repository(
1039 name = "com_github_inconshreveable_mousetrap",
1040 importpath = "github.com/inconshreveable/mousetrap",
1041 tag = "v1.0.0",
1042)
1043
1044go_repository(
1045 name = "com_github_kisielk_gotool",
1046 importpath = "github.com/kisielk/gotool",
1047 tag = "v1.0.0",
1048)
1049
1050go_repository(
1051 name = "com_github_kr_pretty",
1052 importpath = "github.com/kr/pretty",
1053 tag = "v0.1.0",
1054)
1055
1056go_repository(
1057 name = "com_github_kr_pty",
1058 importpath = "github.com/kr/pty",
1059 tag = "v1.1.5",
1060)
1061
1062go_repository(
1063 name = "com_github_kr_text",
1064 importpath = "github.com/kr/text",
1065 tag = "v0.1.0",
1066)
1067
1068go_repository(
1069 name = "com_github_mattn_go_isatty",
1070 importpath = "github.com/mattn/go-isatty",
1071 tag = "v0.0.4",
1072)
1073
1074go_repository(
1075 name = "com_github_microsoft_go_winio",
1076 importpath = "github.com/Microsoft/go-winio",
1077 tag = "v0.4.11",
1078)
1079
1080go_repository(
1081 name = "com_github_mitchellh_go_wordwrap",
1082 importpath = "github.com/mitchellh/go-wordwrap",
1083 tag = "v1.0.0",
1084)
1085
1086go_repository(
1087 name = "com_github_nvveen_gotty",
1088 commit = "cd527374f1e5",
1089 importpath = "github.com/Nvveen/Gotty",
1090)
1091
1092go_repository(
1093 name = "com_github_onsi_ginkgo",
1094 importpath = "github.com/onsi/ginkgo",
1095 tag = "v1.10.1",
1096)
1097
1098go_repository(
1099 name = "com_github_onsi_gomega",
1100 importpath = "github.com/onsi/gomega",
1101 tag = "v1.7.0",
1102)
1103
1104go_repository(
1105 name = "com_github_opencontainers_go_digest",
1106 importpath = "github.com/opencontainers/go-digest",
1107 tag = "v1.0.0-rc1",
1108)
1109
1110go_repository(
1111 name = "com_github_opencontainers_image_spec",
1112 importpath = "github.com/opencontainers/image-spec",
1113 tag = "v1.0.1",
1114)
1115
1116go_repository(
1117 name = "com_github_opencontainers_runc",
1118 importpath = "github.com/opencontainers/runc",
1119 tag = "v0.1.1",
1120)
1121
1122go_repository(
1123 name = "com_github_openzipkin_zipkin_go",
1124 importpath = "github.com/openzipkin/zipkin-go",
1125 tag = "v0.1.3",
1126)
1127
1128go_repository(
1129 name = "com_github_peterbourgon_diskv",
1130 importpath = "github.com/peterbourgon/diskv",
1131 tag = "v2.0.1",
1132)
1133
1134go_repository(
1135 name = "com_github_peterhellberg_link",
1136 importpath = "github.com/peterhellberg/link",
1137 tag = "v1.0.0",
1138)
1139
1140go_repository(
1141 name = "com_github_pkg_errors",
1142 importpath = "github.com/pkg/errors",
1143 tag = "v0.8.1",
1144)
1145
1146go_repository(
1147 name = "com_github_pmezard_go_difflib",
1148 importpath = "github.com/pmezard/go-difflib",
1149 tag = "v1.0.0",
1150)
1151
1152go_repository(
1153 name = "com_github_sergi_go_diff",
1154 commit = "feef008d51ad",
1155 importpath = "github.com/sergi/go-diff",
1156)
1157
1158go_repository(
1159 name = "com_github_shurcool_httpfs",
1160 commit = "809beceb2371",
1161 importpath = "github.com/shurcooL/httpfs",
1162)
1163
1164go_repository(
1165 name = "com_github_spf13_cobra",
1166 importpath = "github.com/spf13/cobra",
1167 tag = "v0.0.5",
1168)
1169
1170go_repository(
1171 name = "com_github_spf13_pflag",
1172 importpath = "github.com/spf13/pflag",
1173 tag = "v1.0.5",
1174)
1175
1176go_repository(
1177 name = "com_github_stretchr_objx",
1178 importpath = "github.com/stretchr/objx",
1179 tag = "v0.2.0",
1180)
1181
1182go_repository(
1183 name = "com_github_stretchr_testify",
1184 importpath = "github.com/stretchr/testify",
1185 tag = "v1.3.0",
1186)
1187
1188go_repository(
1189 name = "in_gopkg_airbrake_gobrake_v2",
1190 importpath = "gopkg.in/airbrake/gobrake.v2",
1191 tag = "v2.0.9",
1192)
1193
1194go_repository(
1195 name = "in_gopkg_check_v1",
1196 commit = "788fd7840127",
1197 importpath = "gopkg.in/check.v1",
1198)
1199
1200go_repository(
1201 name = "in_gopkg_fsnotify_v1",
1202 importpath = "gopkg.in/fsnotify.v1",
1203 tag = "v1.4.7",
1204)
1205
1206go_repository(
1207 name = "in_gopkg_gemnasium_logrus_airbrake_hook_v2",
1208 importpath = "gopkg.in/gemnasium/logrus-airbrake-hook.v2",
1209 tag = "v2.1.2",
1210)
1211
1212go_repository(
1213 name = "in_gopkg_tomb_v1",
1214 commit = "dd632973f1e7",
1215 importpath = "gopkg.in/tomb.v1",
1216)
1217
1218go_repository(
1219 name = "io_k8s_apiextensions_apiserver",
1220 build_file_proto_mode = "disable",
1221 commit = "b615a37f53e7",
1222 importpath = "k8s.io/apiextensions-apiserver",
1223)
1224
1225go_repository(
1226 name = "io_k8s_kube_openapi",
1227 commit = "30be4d16710a",
1228 importpath = "k8s.io/kube-openapi",
1229)
1230
1231go_repository(
1232 name = "io_opencensus_go",
1233 importpath = "go.opencensus.io",
1234 tag = "v0.21.0",
1235)
1236
1237go_repository(
1238 name = "io_opencensus_go_contrib_exporter_ocagent",
1239 importpath = "contrib.go.opencensus.io/exporter/ocagent",
1240 tag = "v0.6.0",
1241)
1242
1243go_repository(
1244 name = "org_apache_git_thrift_git",
1245 commit = "9b75e4fe745a",
1246 importpath = "git.apache.org/thrift.git",
1247)
1248
1249go_repository(
1250 name = "org_golang_google_api",
1251 importpath = "google.golang.org/api",
1252 tag = "v0.4.0",
1253)
1254
1255go_repository(
1256 name = "org_golang_google_appengine",
1257 importpath = "google.golang.org/appengine",
1258 tag = "v1.5.0",
1259)
1260
1261go_repository(
1262 name = "org_golang_google_genproto",
1263 commit = "54afdca5d873",
1264 importpath = "google.golang.org/genproto",
1265)
1266
1267go_repository(
1268 name = "org_golang_google_grpc",
1269 importpath = "google.golang.org/grpc",
Patryk Jakuszew30f9d032020-06-05 23:37:34 +02001270 tag = "v1.29.1",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +01001271)
1272
1273go_repository(
1274 name = "org_golang_x_lint",
1275 commit = "d0100b6bd8b3",
1276 importpath = "golang.org/x/lint",
1277)
1278
1279go_repository(
1280 name = "org_golang_x_sync",
1281 commit = "112230192c58",
1282 importpath = "golang.org/x/sync",
1283)
1284
1285go_repository(
1286 name = "org_golang_x_sys",
1287 commit = "c7b8b68b1456",
1288 importpath = "golang.org/x/sys",
1289)
1290
1291go_repository(
1292 name = "org_golang_x_text",
1293 importpath = "golang.org/x/text",
1294 tag = "v0.3.2",
1295)
1296
1297go_repository(
1298 name = "org_golang_x_tools",
1299 commit = "5eefd052ad72",
1300 importpath = "golang.org/x/tools",
1301)
1302
1303go_repository(
1304 name = "tools_gotest",
1305 importpath = "gotest.tools",
1306 tag = "v2.2.0",
1307)
1308
1309go_repository(
1310 name = "com_github_alecthomas_template",
1311 commit = "a0175ee3bccc",
1312 importpath = "github.com/alecthomas/template",
1313)
1314
1315go_repository(
1316 name = "com_github_alecthomas_units",
1317 commit = "2efee857e7cf",
1318 importpath = "github.com/alecthomas/units",
1319)
1320
1321go_repository(
1322 name = "com_github_armon_consul_api",
1323 commit = "eb2c6b5be1b6",
1324 importpath = "github.com/armon/consul-api",
1325)
1326
1327go_repository(
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +01001328 name = "com_github_bgentry_speakeasy",
1329 importpath = "github.com/bgentry/speakeasy",
1330 tag = "v0.1.0",
1331)
1332
1333go_repository(
1334 name = "com_github_blang_semver",
1335 importpath = "github.com/blang/semver",
1336 tag = "v3.5.0",
1337)
1338
1339go_repository(
1340 name = "com_github_burntsushi_toml",
1341 importpath = "github.com/BurntSushi/toml",
1342 tag = "v0.3.1",
1343)
1344
1345go_repository(
1346 name = "com_github_burntsushi_xgb",
1347 commit = "27f122750802",
1348 importpath = "github.com/BurntSushi/xgb",
1349)
1350
1351go_repository(
1352 name = "com_github_chai2010_gettext_go",
1353 commit = "c6fed771bfd5",
1354 importpath = "github.com/chai2010/gettext-go",
1355)
1356
1357go_repository(
1358 name = "com_github_cockroachdb_datadriven",
1359 commit = "80d97fb3cbaa",
1360 importpath = "github.com/cockroachdb/datadriven",
1361)
1362
1363go_repository(
1364 name = "com_github_coreos_etcd",
1365 importpath = "github.com/coreos/etcd",
1366 tag = "v3.3.10",
1367)
1368
1369go_repository(
1370 name = "com_github_coreos_go_etcd",
1371 importpath = "github.com/coreos/go-etcd",
1372 tag = "v2.0.0",
1373)
1374
1375go_repository(
1376 name = "com_github_coreos_go_oidc",
1377 importpath = "github.com/coreos/go-oidc",
1378 tag = "v2.1.0",
1379)
1380
1381go_repository(
1382 name = "com_github_coreos_go_semver",
1383 importpath = "github.com/coreos/go-semver",
1384 tag = "v0.3.0",
1385)
1386
1387go_repository(
1388 name = "com_github_coreos_go_systemd",
1389 commit = "95778dfbb74e",
1390 importpath = "github.com/coreos/go-systemd",
1391)
1392
1393go_repository(
1394 name = "com_github_coreos_pkg",
1395 commit = "97fdf19511ea",
1396 importpath = "github.com/coreos/pkg",
1397)
1398
1399go_repository(
1400 name = "com_github_cpuguy83_go_md2man",
1401 importpath = "github.com/cpuguy83/go-md2man",
1402 tag = "v1.0.10",
1403)
1404
1405go_repository(
1406 name = "com_github_creack_pty",
1407 importpath = "github.com/creack/pty",
1408 tag = "v1.1.7",
1409)
1410
1411go_repository(
1412 name = "com_github_daviddengcn_go_colortext",
1413 commit = "511bcaf42ccd",
1414 importpath = "github.com/daviddengcn/go-colortext",
1415)
1416
1417go_repository(
1418 name = "com_github_docker_spdystream",
1419 commit = "449fdfce4d96",
1420 importpath = "github.com/docker/spdystream",
1421)
1422
1423go_repository(
1424 name = "com_github_elazarl_goproxy",
1425 commit = "c4fc26588b6e",
1426 importpath = "github.com/elazarl/goproxy",
1427)
1428
1429go_repository(
1430 name = "com_github_emicklei_go_restful",
1431 importpath = "github.com/emicklei/go-restful",
1432 tag = "v2.9.5",
1433)
1434
1435go_repository(
1436 name = "com_github_exponent_io_jsonpath",
1437 commit = "d6023ce2651d",
1438 importpath = "github.com/exponent-io/jsonpath",
1439)
1440
1441go_repository(
1442 name = "com_github_fatih_camelcase",
1443 importpath = "github.com/fatih/camelcase",
1444 tag = "v1.0.0",
1445)
1446
1447go_repository(
1448 name = "com_github_fatih_color",
1449 importpath = "github.com/fatih/color",
1450 tag = "v1.7.0",
1451)
1452
1453go_repository(
1454 name = "com_github_globalsign_mgo",
1455 commit = "eeefdecb41b8",
1456 importpath = "github.com/globalsign/mgo",
1457)
1458
1459go_repository(
1460 name = "com_github_go_kit_kit",
1461 importpath = "github.com/go-kit/kit",
1462 tag = "v0.8.0",
1463)
1464
1465go_repository(
1466 name = "com_github_go_logfmt_logfmt",
1467 importpath = "github.com/go-logfmt/logfmt",
1468 tag = "v0.3.0",
1469)
1470
1471go_repository(
1472 name = "com_github_go_logr_logr",
1473 importpath = "github.com/go-logr/logr",
1474 tag = "v0.1.0",
1475)
1476
1477go_repository(
1478 name = "com_github_go_stack_stack",
1479 importpath = "github.com/go-stack/stack",
1480 tag = "v1.8.0",
1481)
1482
1483go_repository(
1484 name = "com_github_golang_groupcache",
1485 commit = "02826c3e7903",
1486 importpath = "github.com/golang/groupcache",
1487)
1488
1489go_repository(
1490 name = "com_github_golangplus_bytes",
1491 commit = "45c989fe5450",
1492 importpath = "github.com/golangplus/bytes",
1493)
1494
1495go_repository(
1496 name = "com_github_golangplus_fmt",
1497 commit = "2a5d6d7d2995",
1498 importpath = "github.com/golangplus/fmt",
1499)
1500
1501go_repository(
1502 name = "com_github_golangplus_testing",
1503 commit = "af21d9c3145e",
1504 importpath = "github.com/golangplus/testing",
1505)
1506
1507go_repository(
1508 name = "com_github_google_martian",
1509 importpath = "github.com/google/martian",
1510 tag = "v2.1.0",
1511)
1512
1513go_repository(
1514 name = "com_github_google_pprof",
1515 commit = "3ea8567a2e57",
1516 importpath = "github.com/google/pprof",
1517)
1518
1519go_repository(
1520 name = "com_github_google_uuid",
1521 importpath = "github.com/google/uuid",
1522 tag = "v1.1.1",
1523)
1524
1525go_repository(
1526 name = "com_github_googleapis_gax_go_v2",
1527 importpath = "github.com/googleapis/gax-go/v2",
1528 tag = "v2.0.4",
1529)
1530
1531go_repository(
1532 name = "com_github_gorilla_websocket",
1533 importpath = "github.com/gorilla/websocket",
1534 tag = "v1.4.0",
1535)
1536
1537go_repository(
1538 name = "com_github_grpc_ecosystem_go_grpc_middleware",
1539 commit = "f849b5445de4",
1540 importpath = "github.com/grpc-ecosystem/go-grpc-middleware",
1541)
1542
1543go_repository(
1544 name = "com_github_grpc_ecosystem_go_grpc_prometheus",
1545 importpath = "github.com/grpc-ecosystem/go-grpc-prometheus",
1546 tag = "v1.2.0",
1547)
1548
1549go_repository(
1550 name = "com_github_hashicorp_golang_lru",
1551 importpath = "github.com/hashicorp/golang-lru",
1552 tag = "v0.5.1",
1553)
1554
1555go_repository(
1556 name = "com_github_hashicorp_hcl",
1557 importpath = "github.com/hashicorp/hcl",
1558 tag = "v1.0.0",
1559)
1560
1561go_repository(
1562 name = "com_github_jonboulle_clockwork",
1563 importpath = "github.com/jonboulle/clockwork",
1564 tag = "v0.1.0",
1565)
1566
1567go_repository(
1568 name = "com_github_jstemmer_go_junit_report",
1569 commit = "af01ea7f8024",
1570 importpath = "github.com/jstemmer/go-junit-report",
1571)
1572
1573go_repository(
1574 name = "com_github_julienschmidt_httprouter",
1575 importpath = "github.com/julienschmidt/httprouter",
1576 tag = "v1.2.0",
1577)
1578
1579go_repository(
1580 name = "com_github_kisielk_errcheck",
1581 importpath = "github.com/kisielk/errcheck",
1582 tag = "v1.2.0",
1583)
1584
1585go_repository(
1586 name = "com_github_konsorten_go_windows_terminal_sequences",
1587 importpath = "github.com/konsorten/go-windows-terminal-sequences",
1588 tag = "v1.0.1",
1589)
1590
1591go_repository(
1592 name = "com_github_kr_logfmt",
1593 commit = "b84e30acd515",
1594 importpath = "github.com/kr/logfmt",
1595)
1596
1597go_repository(
1598 name = "com_github_liggitt_tabwriter",
1599 commit = "89fcab3d43de",
1600 importpath = "github.com/liggitt/tabwriter",
1601)
1602
1603go_repository(
1604 name = "com_github_lithammer_dedent",
1605 importpath = "github.com/lithammer/dedent",
1606 tag = "v1.1.0",
1607)
1608
1609go_repository(
1610 name = "com_github_magiconair_properties",
1611 importpath = "github.com/magiconair/properties",
1612 tag = "v1.8.0",
1613)
1614
1615go_repository(
1616 name = "com_github_makenowjust_heredoc",
1617 commit = "bb23615498cd",
1618 importpath = "github.com/MakeNowJust/heredoc",
1619)
1620
1621go_repository(
1622 name = "com_github_mattn_go_colorable",
1623 importpath = "github.com/mattn/go-colorable",
1624 tag = "v0.0.9",
1625)
1626
1627go_repository(
1628 name = "com_github_mattn_go_runewidth",
1629 importpath = "github.com/mattn/go-runewidth",
1630 tag = "v0.0.2",
1631)
1632
1633go_repository(
1634 name = "com_github_mitchellh_go_homedir",
1635 importpath = "github.com/mitchellh/go-homedir",
1636 tag = "v1.1.0",
1637)
1638
1639go_repository(
1640 name = "com_github_morikuni_aec",
1641 importpath = "github.com/morikuni/aec",
1642 tag = "v1.0.0",
1643)
1644
1645go_repository(
1646 name = "com_github_munnerz_goautoneg",
1647 commit = "a7dc8b61c822",
1648 importpath = "github.com/munnerz/goautoneg",
1649)
1650
1651go_repository(
1652 name = "com_github_mwitkow_go_conntrack",
1653 commit = "cc309e4a2223",
1654 importpath = "github.com/mwitkow/go-conntrack",
1655)
1656
1657go_repository(
1658 name = "com_github_mxk_go_flowrate",
1659 commit = "cca7078d478f",
1660 importpath = "github.com/mxk/go-flowrate",
1661)
1662
1663go_repository(
1664 name = "com_github_nytimes_gziphandler",
1665 commit = "56545f4a5d46",
1666 importpath = "github.com/NYTimes/gziphandler",
1667)
1668
1669go_repository(
1670 name = "com_github_olekukonko_tablewriter",
1671 commit = "a0225b3f23b5",
1672 importpath = "github.com/olekukonko/tablewriter",
1673)
1674
1675go_repository(
1676 name = "com_github_pelletier_go_toml",
1677 importpath = "github.com/pelletier/go-toml",
1678 tag = "v1.2.0",
1679)
1680
1681go_repository(
1682 name = "com_github_pquerna_cachecontrol",
1683 commit = "0dec1b30a021",
1684 importpath = "github.com/pquerna/cachecontrol",
1685)
1686
1687go_repository(
1688 name = "com_github_remyoudompheng_bigfft",
1689 commit = "52369c62f446",
1690 importpath = "github.com/remyoudompheng/bigfft",
1691)
1692
1693go_repository(
1694 name = "com_github_rogpeppe_fastuuid",
1695 commit = "6724a57986af",
1696 importpath = "github.com/rogpeppe/fastuuid",
1697)
1698
1699go_repository(
1700 name = "com_github_russross_blackfriday",
1701 importpath = "github.com/russross/blackfriday",
1702 tag = "v1.5.2",
1703)
1704
1705go_repository(
1706 name = "com_github_soheilhy_cmux",
1707 importpath = "github.com/soheilhy/cmux",
1708 tag = "v0.1.4",
1709)
1710
1711go_repository(
1712 name = "com_github_spf13_afero",
1713 importpath = "github.com/spf13/afero",
1714 tag = "v1.2.2",
1715)
1716
1717go_repository(
1718 name = "com_github_spf13_cast",
1719 importpath = "github.com/spf13/cast",
1720 tag = "v1.3.0",
1721)
1722
1723go_repository(
1724 name = "com_github_spf13_jwalterweatherman",
1725 importpath = "github.com/spf13/jwalterweatherman",
1726 tag = "v1.0.0",
1727)
1728
1729go_repository(
1730 name = "com_github_spf13_viper",
1731 importpath = "github.com/spf13/viper",
1732 tag = "v1.3.2",
1733)
1734
1735go_repository(
1736 name = "com_github_tmc_grpc_websocket_proxy",
1737 commit = "89b8d40f7ca8",
1738 importpath = "github.com/tmc/grpc-websocket-proxy",
1739)
1740
1741go_repository(
1742 name = "com_github_ugorji_go_codec",
1743 commit = "d75b2dcb6bc8",
1744 importpath = "github.com/ugorji/go/codec",
1745)
1746
1747go_repository(
1748 name = "com_github_xiang90_probing",
1749 commit = "43a291ad63a2",
1750 importpath = "github.com/xiang90/probing",
1751)
1752
1753go_repository(
1754 name = "com_github_xlab_handysort",
1755 commit = "fb3537ed64a1",
1756 importpath = "github.com/xlab/handysort",
1757)
1758
1759go_repository(
1760 name = "com_github_xordataexchange_crypt",
1761 commit = "b2862e3d0a77",
1762 importpath = "github.com/xordataexchange/crypt",
1763)
1764
1765go_repository(
1766 name = "in_gopkg_alecthomas_kingpin_v2",
1767 importpath = "gopkg.in/alecthomas/kingpin.v2",
1768 tag = "v2.2.6",
1769)
1770
1771go_repository(
1772 name = "in_gopkg_cheggaaa_pb_v1",
1773 importpath = "gopkg.in/cheggaaa/pb.v1",
1774 tag = "v1.0.25",
1775)
1776
1777go_repository(
1778 name = "in_gopkg_natefinch_lumberjack_v2",
1779 importpath = "gopkg.in/natefinch/lumberjack.v2",
1780 tag = "v2.0.0",
1781)
1782
1783go_repository(
1784 name = "in_gopkg_resty_v1",
1785 importpath = "gopkg.in/resty.v1",
1786 tag = "v1.12.0",
1787)
1788
1789go_repository(
1790 name = "in_gopkg_square_go_jose_v2",
1791 importpath = "gopkg.in/square/go-jose.v2",
1792 tag = "v2.2.2",
1793)
1794
1795go_repository(
1796 name = "io_etcd_go_bbolt",
1797 importpath = "go.etcd.io/bbolt",
1798 tag = "v1.3.3",
1799)
1800
1801go_repository(
1802 name = "io_etcd_go_etcd",
1803 commit = "3cf2f69b5738",
1804 importpath = "go.etcd.io/etcd",
1805)
1806
1807go_repository(
1808 name = "io_k8s_apiserver",
1809 commit = "f2537b84c964",
1810 importpath = "k8s.io/apiserver",
1811)
1812
1813go_repository(
1814 name = "io_k8s_cli_runtime",
1815 commit = "ec04ad4dbd24",
1816 importpath = "k8s.io/cli-runtime",
1817)
1818
1819go_repository(
1820 name = "io_k8s_code_generator",
1821 commit = "2a85f169f05f",
1822 importpath = "k8s.io/code-generator",
1823)
1824
1825go_repository(
1826 name = "io_k8s_component_base",
1827 commit = "ea09a2678486",
1828 importpath = "k8s.io/component-base",
1829)
1830
1831go_repository(
1832 name = "io_k8s_gengo",
1833 commit = "26a664648505",
1834 importpath = "k8s.io/gengo",
1835)
1836
1837go_repository(
1838 name = "io_k8s_kubectl",
1839 commit = "fbc5d36fee2d",
1840 importpath = "k8s.io/kubectl",
1841)
1842
1843go_repository(
1844 name = "io_k8s_metrics",
1845 commit = "dea8d0e6b550",
1846 importpath = "k8s.io/metrics",
1847)
1848
1849go_repository(
1850 name = "io_k8s_sigs_kustomize",
1851 importpath = "sigs.k8s.io/kustomize",
1852 tag = "v2.0.3",
1853)
1854
1855go_repository(
1856 name = "io_k8s_sigs_structured_merge_diff",
1857 commit = "b1b620dd3f06",
1858 importpath = "sigs.k8s.io/structured-merge-diff",
1859)
1860
1861go_repository(
1862 name = "org_golang_x_exp",
1863 commit = "4b39c73a6495",
1864 importpath = "golang.org/x/exp",
1865)
1866
1867go_repository(
1868 name = "org_golang_x_image",
1869 commit = "0694c2d4d067",
1870 importpath = "golang.org/x/image",
1871)
1872
1873go_repository(
1874 name = "org_golang_x_mobile",
1875 commit = "d3739f865fa6",
1876 importpath = "golang.org/x/mobile",
1877)
1878
1879go_repository(
1880 name = "org_golang_x_xerrors",
1881 commit = "a985d3407aa7",
1882 importpath = "golang.org/x/xerrors",
1883)
1884
1885go_repository(
1886 name = "org_gonum_v1_gonum",
1887 commit = "3d26580ed485",
1888 importpath = "gonum.org/v1/gonum",
1889)
1890
1891go_repository(
1892 name = "org_gonum_v1_netlib",
1893 commit = "76723241ea4e",
1894 importpath = "gonum.org/v1/netlib",
1895)
1896
1897go_repository(
1898 name = "org_modernc_cc",
1899 importpath = "modernc.org/cc",
1900 tag = "v1.0.0",
1901)
1902
1903go_repository(
1904 name = "org_modernc_golex",
1905 importpath = "modernc.org/golex",
1906 tag = "v1.0.0",
1907)
1908
1909go_repository(
1910 name = "org_modernc_mathutil",
1911 importpath = "modernc.org/mathutil",
1912 tag = "v1.0.0",
1913)
1914
1915go_repository(
1916 name = "org_modernc_strutil",
1917 importpath = "modernc.org/strutil",
1918 tag = "v1.0.0",
1919)
1920
1921go_repository(
1922 name = "org_modernc_xc",
1923 importpath = "modernc.org/xc",
1924 tag = "v1.0.0",
1925)
1926
1927go_repository(
1928 name = "org_uber_go_atomic",
1929 importpath = "go.uber.org/atomic",
1930 tag = "v1.3.2",
1931)
1932
1933go_repository(
1934 name = "org_uber_go_multierr",
1935 importpath = "go.uber.org/multierr",
1936 tag = "v1.1.0",
1937)
1938
1939go_repository(
1940 name = "org_uber_go_zap",
1941 importpath = "go.uber.org/zap",
1942 tag = "v1.10.0",
1943)
Sergiusz Bazanskic315aac2020-01-02 16:43:39 +01001944
1945go_repository(
1946 name = "com_github_dgraph_io_ristretto",
1947 commit = "83508260cb49a2c3261c2774c991870fd18b5a1b",
1948 importpath = "github.com/dgraph-io/ristretto",
1949)
1950
1951go_repository(
1952 name = "com_github_cespare_xxhash",
1953 commit = "d7df74196a9e781ede915320c11c378c1b2f3a1f",
1954 importpath = "github.com/cespare/xxhash",
1955)
1956
1957go_repository(
1958 name = "com_github_ulule_limiter_v3",
1959 commit = "6911899e37a5788df86f770b3f85c1c3eb0313d5",
1960 importpath = "github.com/ulule/limiter/v3",
1961 remote = "https://github.com/ulule/limiter",
1962 vcs = "git",
1963)
Sergiusz Bazanskia8854882020-01-05 00:34:38 +01001964
1965go_repository(
1966 name = "com_github_go_telegram_bot_api_telegram_bot_api",
1967 commit = "b33efeebc78563cfeddf19563781cffb16aaabdf",
1968 importpath = "github.com/go-telegram-bot-api/telegram-bot-api",
1969)
1970
1971go_repository(
1972 name = "com_github_technoweenie_multipartstreamer",
1973 commit = "a90a01d73ae432e2611d178c18367fbaa13e0154",
1974 importpath = "github.com/technoweenie/multipartstreamer",
1975)
1976
1977go_repository(
1978 name = "in_gopkg_irc_v3",
1979 commit = "d07dcb9293789fdc99c797d3499a5799bc343b86",
1980 importpath = "gopkg.in/irc.v3",
1981)
Sergiusz Bazanskic881cf32020-04-08 20:03:12 +02001982
1983go_repository(
1984 name = "in_gopkg_russross_blackfriday_v2",
1985 commit = "d3b5b032dc8e8927d31a5071b56e14c89f045135",
1986 importpath = "gopkg.in/russross/blackfriday.v2",
1987)
1988
1989go_repository(
1990 name = "com_github_shurcool_sanitized_anchor_name",
1991 commit = "7bfe4c7ecddb3666a94b053b422cdd8f5aaa3615",
1992 importpath = "github.com/shurcooL/sanitized_anchor_name",
1993)
Sergiusz Bazanski4c0e9b52020-04-08 22:42:33 +02001994
1995go_repository(
1996 name = "com_github_go_git_go_billy_v5",
1997 commit = "d7a8afccaed297c30f8dff5724dbe422b491dd0d",
1998 importpath = "github.com/go-git/go-billy/v5",
1999 remote = "https://github.com/go-git/go-billy",
2000 vcs = "git",
2001)
2002
2003go_repository(
2004 name = "com_github_go_git_go_git_v5",
2005 commit = "3127ad9a44a2ee935502816065dfe39f494f583d",
2006 importpath = "github.com/go-git/go-git/v5",
2007 remote = "https://github.com/go-git/go-git",
2008 vcs = "git",
2009 build_extra_args = [
2010 "-known_import=github.com/go-git/go-billy/v5",
2011 ],
2012)
2013
2014go_repository(
2015 name = "com_github_go_git_gcfg",
2016 commit = "22f18f9a74d34e3b1a7d59cfa33043bc50ebe376",
2017 importpath = "github.com/go-git/gcfg",
2018)
2019
2020go_repository(
2021 name = "in_gopkg_warnings_v0",
2022 commit = "ec4a0fea49c7b46c2aeb0b51aac55779c607e52b",
2023 importpath = "gopkg.in/warnings.v0",
2024)
2025
2026go_repository(
2027 name = "com_github_emirpasic_gods",
2028 commit = "80e934ed68b9084f386ae25f74f839aaecfb54d8",
2029 importpath = "github.com/emirpasic/gods",
2030)
2031
2032go_repository(
2033 name = "com_github_jbenet_go_context",
2034 commit = "d14ea06fba99483203c19d92cfcd13ebe73135f4",
2035 importpath = "github.com/jbenet/go-context",
2036)
2037
2038go_repository(
2039 name = "com_github_kevinburke_ssh_config",
2040 commit = "01f96b0aa0cdcaa93f9495f89bbc6cb5a992ce6e",
2041 importpath = "github.com/kevinburke/ssh_config",
2042)
2043
2044go_repository(
2045 name = "com_github_xanzy_ssh_agent",
2046 commit = "6a3e2ff9e7c564f36873c2e36413f634534f1c44",
2047 importpath = "github.com/xanzy/ssh-agent",
2048)
Sergiusz Bazanski8adbd492020-04-10 21:20:53 +02002049
2050go_repository(
2051 name = "com_github_gabriel_vasile_mimetype",
2052 commit = "06500030e7d26826f68caa5ca7d98c315c4caa28",
2053 importpath = "github.com/gabriel-vasile/mimetype",
2054)
Sergiusz Bazanskide3d3fa2020-05-31 00:12:11 +02002055go_repository(
2056 name = "com_github_kevinburke_go_bindata",
2057 commit = "a606d617e1d1546a2342de6fc4ed95c78e171d68",
2058 importpath = "github.com/kevinburke/go-bindata",
2059)