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