blob: 65278ba5b72a57bc565f0194564520f13f454154 [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 Bazanskie03c2172020-02-15 01:04:38 +0100186 "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.21.3/rules_go-v0.21.3.tar.gz",
187 "https://github.com/bazelbuild/rules_go/releases/download/v0.21.3/rules_go-v0.21.3.tar.gz",
Sergiusz Bazanski1cace132019-07-13 16:16:34 +0200188 ],
Sergiusz Bazanskie03c2172020-02-15 01:04:38 +0100189 sha256 = "af04c969321e8f428f63ceb73463d6ea817992698974abeff0161e069cd08bd6",
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100190)
191
Sergiusz Bazanskie03c2172020-02-15 01:04:38 +0100192# Invoke go_rules_dependencies depending on host platform.
193load("//tools:go_sdk.bzl", "gen_imports")
194gen_imports(name = "go_sdk_imports")
195load("@go_sdk_imports//:imports.bzl", "load_go_sdk")
196load_go_sdk()
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100197
198# Go Gazelle rules
199
200http_archive(
201 name = "bazel_gazelle",
Sergiusz Bazanskie03c2172020-02-15 01:04:38 +0100202 urls = [
203 "https://storage.googleapis.com/bazel-mirror/github.com/bazelbuild/bazel-gazelle/releases/download/v0.20.0/bazel-gazelle-v0.20.0.tar.gz",
204 "https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.20.0/bazel-gazelle-v0.20.0.tar.gz",
205 ],
206 sha256 = "d8c45ee70ec39a57e7a05e5027c32b1576cc7f16d9dd37135b0eddde45cf1b10",
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100207)
208
209load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository")
210
211gazelle_dependencies()
212
Sergiusz Bazanski57efce62019-07-21 16:39:54 +0200213# For devtools/gerrit/gerrit-oauth-provider
Sergiusz Bazanski573da782019-06-21 19:59:52 +0200214
215git_repository(
216 name = "com_googlesource_gerrit_bazlets",
217 remote = "https://gerrit.googlesource.com/bazlets",
218 commit = "8528a0df69dadf6311d8d3f81c1b693afda8bcf1",
Sergiusz Bazanski5f9b1ec2019-09-22 02:19:18 +0200219 shallow_since = "1560842141 +0200",
Sergiusz Bazanski573da782019-06-21 19:59:52 +0200220)
221
222load(
223 "@com_googlesource_gerrit_bazlets//:gerrit_api.bzl",
224 "gerrit_api",
225)
226
227gerrit_api()
228
229load("@com_googlesource_gerrit_bazlets//tools:maven_jar.bzl", "maven_jar")
230
231maven_jar(
232 name = "scribe",
233 artifact = "org.scribe:scribe:1.3.7",
234 sha1 = "583921bed46635d9f529ef5f14f7c9e83367bc6e",
235)
236
237maven_jar(
238 name = "commons-codec",
239 artifact = "commons-codec:commons-codec:1.4",
240 sha1 = "4216af16d38465bbab0f3dff8efa14204f7a399a",
241)
242
Sergiusz Bazanski356ea8b2019-07-21 23:56:43 +0200243# For devtools/bazel-cache
244
245git_repository(
246 name = "com_github_buchgr_bazel_remote",
247 remote = "https://github.com/buchgr/bazel-remote.git",
248 commit = "a9374e638411da72a2ef2a83f490e61e2d74a976",
249)
250
251# Go image repos for Docker
252
253load(
254 "@io_bazel_rules_docker//go:image.bzl",
255 go_image_repositories = "repositories",
256)
257
258go_image_repositories()
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100259# Go repositories
260
261go_repository(
262 name = "io_k8s_kubernetes",
263 importpath = "k8s.io/kubernetes",
264 # Get from HTTP instead, this repository is _big_
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100265 urls = ["https://github.com/kubernetes/kubernetes/archive/v1.16.0.tar.gz"],
266 sha256 = "a8b2ee84ce38fa14404d7e56daa87aa2f2fb13e0114fb1150f294c992ab3f36c",
267 strip_prefix = "kubernetes-1.16.0",
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100268)
269
270go_repository(
Sergiusz Bazanski4a024bb2019-05-17 18:10:02 +0200271 name = "io_k8s_repo_infra",
272 commit = "df02ded38f9506e5bbcbf21702034b4fef815f2f",
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100273 importpath = "k8s.io/repo-infra",
274)
275
276go_repository(
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100277 name = "com_github_bitnami_kubecfg",
278 importpath = "github.com/bitnami/kubecfg",
279 vcs = "git",
280 commit = "dddf366990f581132cd046c723d73a2357de2dc8",
281 remote = "https://github.com/q3k/kubecfg",
Sergiusz Bazanskif2a812b2019-01-13 17:51:34 +0100282)
Sergiusz Bazanski07529712019-01-18 01:24:38 +0100283
284go_repository(
285 name = "com_github_projectcalico_calicoctl",
286 importpath = "github.com/projectcalico/calicoctl",
287 # This fork implements explicit Bazel rules
288 remote = "https://github.com/q3k/calicoctl",
289 vcs = "git",
290 commit = "1bc31862f07e7539ca493de9137ed1ad56cc9f43",
291 build_file_generation = "off",
292)
Sergiusz Bazanski9dc4b682019-04-05 23:51:49 +0200293
294go_repository(
295 name = "com_github_shirou_gopsutil",
296 commit = "2cbc9195c892b304060269ef280375236d2fcac9",
297 importpath = "github.com/shirou/gopsutil",
298)
Sergiusz Bazanskiacd001b2019-04-09 13:17:06 +0200299
300go_repository(
301 name = "com_github_cloudflare_cfssl",
302 commit = "768cd563887febaad559b511aaa5964823ccb4ab",
303 importpath = "github.com/cloudflare/cfssl",
304)
Sergiusz Bazanski258686c2019-05-01 12:26:43 +0200305
306go_repository(
307 name = "com_github_mattn_go_sqlite3",
308 commit = "5994cc52dfa89a4ee21ac891b06fbc1ea02c52d3",
309 importpath = "github.com/mattn/go-sqlite3",
310)
311
312go_repository(
313 name = "com_github_sebastiaanklippert_go_wkhtmltopdf",
314 commit = "72a7793efd38728796273861bb27d590cc33d9d4",
315 importpath = "github.com/sebastiaanklippert/go-wkhtmltopdf",
316)
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200317
318go_repository(
319 name = "com_github_ziutek_telnet",
320 commit = "c3b780dc415b28894076b4ec975ea3ea69e3980f",
321 importpath = "github.com/ziutek/telnet",
322)
323
324go_repository(
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200325 name = "com_github_digitalocean_go_netbox",
326 commit = "29433ec527e78486ea0a5758817ab672d977f90e",
327 importpath = "github.com/digitalocean/go-netbox",
328)
329
330go_repository(
331 name = "com_github_cenkalti_backoff",
332 commit = "4b4cebaf850ec58f1bb1fec5bdebdf8501c2bc3f",
333 importpath = "github.com/cenkalti/backoff",
334)
335
336go_repository(
337 name = "ml_vbom_util",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100338 commit = "db5cfe13f5cc",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200339 importpath = "vbom.ml/util",
340)
341
342go_repository(
343 name = "com_github_go_openapi_strfmt",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200344 importpath = "github.com/go-openapi/strfmt",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100345 tag = "v0.19.0",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200346)
347
348go_repository(
349 name = "com_github_go_openapi_swag",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200350 importpath = "github.com/go-openapi/swag",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100351 tag = "v0.19.5",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200352)
353
354go_repository(
355 name = "com_github_go_openapi_errors",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200356 importpath = "github.com/go-openapi/errors",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100357 tag = "v0.19.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200358)
359
360go_repository(
361 name = "com_github_go_openapi_runtime",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200362 importpath = "github.com/go-openapi/runtime",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100363 tag = "v0.19.0",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200364)
365
366go_repository(
367 name = "com_github_go_openapi_validate",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200368 importpath = "github.com/go-openapi/validate",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100369 tag = "v0.19.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200370)
371
372go_repository(
373 name = "com_github_mitchellh_mapstructure",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200374 importpath = "github.com/mitchellh/mapstructure",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100375 tag = "v1.1.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200376)
377
378go_repository(
379 name = "org_mongodb_go_mongo_driver",
380 commit = "9ec4480161a76f5267d56fc836b7f6d357fd9209",
381 importpath = "go.mongodb.org/mongo-driver",
382)
383
384go_repository(
385 name = "in_gopkg_yaml_v2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200386 importpath = "gopkg.in/yaml.v2",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100387 tag = "v2.2.4",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200388)
389
390go_repository(
391 name = "com_github_asaskevich_govalidator",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100392 commit = "f61b66f89f4a",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200393 importpath = "github.com/asaskevich/govalidator",
394)
395
396go_repository(
397 name = "com_github_go_openapi_spec",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200398 importpath = "github.com/go-openapi/spec",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100399 tag = "v0.19.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200400)
401
402go_repository(
403 name = "com_github_mailru_easyjson",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100404 commit = "b2ccc519800e",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200405 importpath = "github.com/mailru/easyjson",
406)
407
408go_repository(
409 name = "com_github_go_openapi_analysis",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200410 importpath = "github.com/go-openapi/analysis",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100411 tag = "v0.19.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200412)
413
414go_repository(
415 name = "com_github_go_openapi_jsonpointer",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200416 importpath = "github.com/go-openapi/jsonpointer",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100417 tag = "v0.19.3",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200418)
419
420go_repository(
421 name = "com_github_go_openapi_loads",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200422 importpath = "github.com/go-openapi/loads",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100423 tag = "v0.19.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200424)
425
426go_repository(
427 name = "com_github_go_openapi_jsonreference",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200428 importpath = "github.com/go-openapi/jsonreference",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100429 tag = "v0.19.2",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200430)
431
432go_repository(
433 name = "com_github_puerkitobio_purell",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200434 importpath = "github.com/PuerkitoBio/purell",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100435 tag = "v1.1.1",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200436)
437
438go_repository(
439 name = "com_github_puerkitobio_urlesc",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100440 commit = "de5bf2ad4578",
Sergiusz Bazanski838cf652019-07-16 23:31:25 +0200441 importpath = "github.com/PuerkitoBio/urlesc",
442)
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200443
444go_repository(
445 name = "com_github_abbot_go_http_auth",
446 commit = "860ed7f246ff5abfdbd5c7ce618fd37b49fd3d86",
447 importpath = "github.com/abbot/go-http-auth",
448)
449
450go_repository(
451 name = "com_github_urfave_cli",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200452 importpath = "github.com/urfave/cli",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100453 tag = "v1.20.0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200454)
455
456go_repository(
457 name = "org_golang_x_crypto",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100458 commit = "60c769a6c586",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200459 importpath = "golang.org/x/crypto",
460)
461
462go_repository(
463 name = "org_golang_x_oauth2",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100464 commit = "0f29369cfe45",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200465 importpath = "golang.org/x/oauth2",
466)
467
468go_repository(
469 name = "com_github_djherbis_atime",
470 commit = "2d569978378562c466df74eda2d82900f435c5f4",
471 importpath = "github.com/djherbis/atime",
472)
473
474go_repository(
475 name = "com_google_cloud_go",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200476 importpath = "cloud.google.com/go",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100477 tag = "v0.38.0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200478)
479
480go_repository(
481 name = "org_golang_x_net",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100482 commit = "13f9640d40b9",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200483 importpath = "golang.org/x/net",
484)
485
486go_repository(
487 name = "com_github_stackexchange_wmi",
488 commit = "cbe66965904dbe8a6cd589e2298e5d8b986bd7dd",
489 importpath = "github.com/stackexchange/wmi",
490)
491
492go_repository(
493 name = "com_github_go_ole_go_ole",
494 commit = "938323a72016e9cf84fa5fba7635089efb0ad87f",
495 importpath = "github.com/go-ole/go-ole",
496)
497
498go_repository(
499 name = "com_github_dustin_go_humanize",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200500 importpath = "github.com/dustin/go-humanize",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100501 tag = "v1.0.0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200502)
503
504go_repository(
505 name = "io_k8s_client_go",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100506 commit = "0a8a1d7b7fae",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200507 importpath = "k8s.io/client-go",
508)
509
510go_repository(
511 name = "io_k8s_apimachinery",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200512 build_file_proto_mode = "disable",
Sergiusz Bazanski9d738ce2020-02-21 12:54:05 +0100513 commit = "731dcecc205498f52a21b12e311af095efb4b188",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100514 importpath = "k8s.io/apimachinery",
Sergiusz Bazanski9d738ce2020-02-21 12:54:05 +0100515 patches = ["//third_party/go/k8s-apimachinery:fix-kubernetes-bug-87675.patch"],
516 patch_args = ["-p1"],
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200517)
518
519go_repository(
520 name = "io_k8s_klog",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200521 importpath = "k8s.io/klog",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100522 tag = "v1.0.0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200523)
524
525go_repository(
526 name = "io_k8s_utils",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100527 commit = "e782cd3c129f",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200528 importpath = "k8s.io/utils",
529)
530
531go_repository(
532 name = "com_github_googleapis_gnostic",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100533 commit = "15cf44e552f9",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200534 importpath = "github.com/googleapis/gnostic",
535)
536
537go_repository(
538 name = "io_k8s_api",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200539 build_file_proto_mode = "disable",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100540 commit = "bbc9463b57e5",
541 importpath = "k8s.io/api",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200542)
543
544go_repository(
545 name = "org_golang_x_time",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100546 commit = "9d24e82272b4",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200547 importpath = "golang.org/x/time",
548)
549
550go_repository(
551 name = "com_github_google_gofuzz",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200552 importpath = "github.com/google/gofuzz",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100553 tag = "v1.0.0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200554)
555
556go_repository(
557 name = "io_k8s_sigs_yaml",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200558 importpath = "sigs.k8s.io/yaml",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100559 tag = "v1.1.0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200560)
561
562go_repository(
563 name = "com_github_modern_go_reflect2",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200564 importpath = "github.com/modern-go/reflect2",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100565 tag = "v1.0.1",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200566)
567
568go_repository(
569 name = "com_github_davecgh_go_spew",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200570 importpath = "github.com/davecgh/go-spew",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100571 tag = "v1.1.1",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200572)
573
574go_repository(
575 name = "com_github_json_iterator_go",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200576 importpath = "github.com/json-iterator/go",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100577 tag = "v1.1.8",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200578)
579
580go_repository(
581 name = "com_github_modern_go_concurrent",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100582 commit = "bacd9c7ef1dd",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200583 importpath = "github.com/modern-go/concurrent",
584)
585
586go_repository(
587 name = "in_gopkg_inf_v0",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200588 importpath = "gopkg.in/inf.v0",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100589 tag = "v0.9.1",
Sergiusz Bazanski8fe651b2019-07-21 23:50:05 +0200590)
Serge Bazanskib2d6b112019-07-30 13:07:04 +0200591
Serge Bazanskibeefe442019-07-30 13:03:03 +0200592go_repository(
593 name = "com_github_cloudflare_cfrpki",
594 commit = "adece784464315db69299ba75e9287c60cd95c69",
595 importpath = "github.com/cloudflare/cfrpki",
596)
597
598go_repository(
599 name = "com_github_prometheus_client_golang",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200600 importpath = "github.com/prometheus/client_golang",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100601 tag = "v1.0.0",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200602)
603
604go_repository(
605 name = "com_github_rs_cors",
606 commit = "db0fe48135e83b5812a5a31be0eea66984b1b521",
607 importpath = "github.com/rs/cors",
608)
609
610go_repository(
611 name = "com_github_cloudflare_gortr",
612 commit = "95270606e8853d9b93f5be46d656d08ec0a4ef09",
613 importpath = "github.com/cloudflare/gortr",
614)
615
616go_repository(
617 name = "com_github_gorilla_mux",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200618 importpath = "github.com/gorilla/mux",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100619 tag = "v1.6.2",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200620)
621
622go_repository(
623 name = "com_github_sirupsen_logrus",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200624 importpath = "github.com/sirupsen/logrus",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100625 tag = "v1.4.2",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200626)
627
628go_repository(
629 name = "com_github_prometheus_common",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200630 importpath = "github.com/prometheus/common",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100631 tag = "v0.4.1",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200632)
633
634go_repository(
635 name = "com_github_beorn7_perks",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200636 importpath = "github.com/beorn7/perks",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100637 tag = "v1.0.0",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200638)
639
640go_repository(
641 name = "com_github_prometheus_client_model",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100642 commit = "fd36f4220a90",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200643 importpath = "github.com/prometheus/client_model",
644)
645
646go_repository(
647 name = "com_github_prometheus_procfs",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200648 importpath = "github.com/prometheus/procfs",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100649 tag = "v0.0.2",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200650)
651
652go_repository(
653 name = "com_github_matttproud_golang_protobuf_extensions",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200654 importpath = "github.com/matttproud/golang_protobuf_extensions",
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100655 tag = "v1.0.1",
Serge Bazanskibeefe442019-07-30 13:03:03 +0200656)
Sergiusz Bazanski6eaaaf92019-08-02 01:25:31 +0200657
658go_repository(
Sergiusz Bazanski30317b42019-08-01 16:50:41 +0200659 name = "com_github_jmoiron_sqlx",
660 commit = "38398a30ed8516ffda617a04c822de09df8a3ec5",
661 importpath = "github.com/jmoiron/sqlx",
662)
663
664go_repository(
665 name = "com_github_lib_pq",
666 commit = "3427c32cb71afc948325f299f040e53c1dd78979",
667 importpath = "github.com/lib/pq",
668)
669
670go_repository(
671 name = "com_github_gchaincl_sqlhooks",
672 commit = "1932c8dd22f2283687586008bf2d58c2c5c014d0",
673 importpath = "github.com/gchaincl/sqlhooks",
674)
675
676go_repository(
677 name = "com_github_golang_migrate_migrate_v4",
678 commit = "e93eaeb3fe21ce2ccc1365277a01863e6bc84d9c",
679 importpath = "github.com/golang-migrate/migrate/v4",
680 remote = "https://github.com/golang-migrate/migrate",
681 vcs = "git",
682)
683
684go_repository(
685 name = "com_github_hashicorp_go_multierror",
686 commit = "bdca7bb83f603b80ef756bb953fe1dafa9cd00a2",
687 importpath = "github.com/hashicorp/go-multierror",
688)
689
690go_repository(
691 name = "com_github_hashicorp_errwrap",
692 commit = "8a6fb523712970c966eefc6b39ed2c5e74880354",
693 importpath = "github.com/hashicorp/errwrap",
694)
695
696go_repository(
697 name = "com_github_cockroachdb_cockroach_go",
698 commit = "e0a95dfd547cc9c3ebaaba1a12c2afe4bf621ac5",
699 importpath = "github.com/cockroachdb/cockroach-go",
700)
701
702go_repository(
703 name = "com_github_jackc_pgx",
704 commit = "6954c15ad0bd3c9aa6dd1b190732b020379beb28",
705 importpath = "github.com/jackc/pgx",
706)
707
708go_repository(
Sergiusz Bazanski6eaaaf92019-08-02 01:25:31 +0200709 name = "com_github_golang_collections_go_datastructures",
710 commit = "59788d5eb2591d3497ffb8fafed2f16fe00e7775",
711 importpath = "github.com/golang-collections/go-datastructures",
712)
713
714go_repository(
715 name = "com_github_go_test_deep",
716 commit = "cf67d735e69b4a4d50cdf571a92b0144786080f7",
717 importpath = "github.com/go-test/deep",
718)
Sergiusz Bazanski1fad2e52019-08-01 20:16:27 +0200719
720go_repository(
721 name = "com_github_sethvargo_go_password",
722 commit = "68ac5879751a7105834296859f8c1bf70b064675",
723 importpath = "github.com/sethvargo/go-password",
724)
Sergiusz Bazanskib13b7ff2019-08-29 20:12:24 +0200725
726go_repository(
727 name = "in_gopkg_ldap_v3",
728 commit = "9f0d712775a0973b7824a1585a86a4ea1d5263d9",
729 importpath = "gopkg.in/ldap.v3",
730)
731
732go_repository(
733 name = "in_gopkg_asn1_ber_v1",
734 commit = "f715ec2f112d1e4195b827ad68cf44017a3ef2b1",
735 importpath = "gopkg.in/asn1-ber.v1",
736)
Sergiusz Bazanski47b7e852019-09-26 18:32:39 +0200737
738go_repository(
739 name = "com_github_q3k_cursedjsonrpc",
740 commit = "304f0561c9162a2696f3ae7c96f3404324177ab8",
741 importpath = "github.com/q3k/cursedjsonrpc",
742)
743
744go_repository(
745 name = "com_github_q3k_cursedjson",
746 commit = "af0e3abb1bcef7197b3b9f91d7d094e6528a2d05",
747 importpath = "github.com/q3k/cursedjson",
748)
Sergiusz Bazanskie5a956a2019-11-17 22:38:40 +0100749
750go_repository(
751 name = "co_honnef_go_tools",
752 commit = "ea95bdfd59fc",
753 importpath = "honnef.co/go/tools",
754)
755
756go_repository(
757 name = "com_github_azure_go_ansiterm",
758 commit = "d6e3b3328b78",
759 importpath = "github.com/Azure/go-ansiterm",
760)
761
762go_repository(
763 name = "com_github_azure_go_autorest",
764 importpath = "github.com/Azure/go-autorest",
765 tag = "v11.5.0",
766)
767
768local_repository(
769 name = "com_github_census_instrumentation_opencensus_proto",
770 path = "./third_party/go/opencensus-proto",
771)
772
773go_repository(
774 name = "com_github_client9_misspell",
775 importpath = "github.com/client9/misspell",
776 tag = "v0.3.4",
777)
778
779go_repository(
780 name = "com_github_containerd_continuity",
781 commit = "7f53d412b9eb",
782 importpath = "github.com/containerd/continuity",
783)
784
785go_repository(
786 name = "com_github_coreos_clair",
787 commit = "44ae4bc9590a",
788 importpath = "github.com/coreos/clair",
789)
790
791go_repository(
792 name = "com_github_dgrijalva_jwt_go",
793 importpath = "github.com/dgrijalva/jwt-go",
794 tag = "v3.2.0",
795)
796
797go_repository(
798 name = "com_github_docker_cli",
799 commit = "54c19e67f69c",
800 importpath = "github.com/docker/cli",
801)
802
803go_repository(
804 name = "com_github_docker_distribution",
805 importpath = "github.com/docker/distribution",
806 tag = "v2.7.1",
807)
808
809go_repository(
810 name = "com_github_docker_docker",
811 commit = "be7ac8be2ae0",
812 importpath = "github.com/docker/docker",
813)
814
815go_repository(
816 name = "com_github_docker_docker_ce",
817 commit = "f53bd8bb8e43",
818 importpath = "github.com/docker/docker-ce",
819)
820
821go_repository(
822 name = "com_github_docker_docker_credential_helpers",
823 importpath = "github.com/docker/docker-credential-helpers",
824 tag = "v0.6.1",
825)
826
827go_repository(
828 name = "com_github_docker_go_connections",
829 commit = "97c2040d34df",
830 importpath = "github.com/docker/go-connections",
831)
832
833go_repository(
834 name = "com_github_docker_go_metrics",
835 commit = "399ea8c73916",
836 importpath = "github.com/docker/go-metrics",
837)
838
839go_repository(
840 name = "com_github_docker_go_units",
841 importpath = "github.com/docker/go-units",
842 tag = "v0.3.3",
843)
844
845go_repository(
846 name = "com_github_docker_libtrust",
847 commit = "aabc10ec26b7",
848 importpath = "github.com/docker/libtrust",
849)
850
851go_repository(
852 name = "com_github_elazarl_go_bindata_assetfs",
853 commit = "38087fe4dafb",
854 importpath = "github.com/elazarl/go-bindata-assetfs",
855)
856
857go_repository(
858 name = "com_github_evanphx_json_patch",
859 importpath = "github.com/evanphx/json-patch",
860 tag = "v4.2.0",
861)
862
863go_repository(
864 name = "com_github_fernet_fernet_go",
865 commit = "9eac43b88a5e",
866 importpath = "github.com/fernet/fernet-go",
867)
868
869go_repository(
870 name = "com_github_fsnotify_fsnotify",
871 importpath = "github.com/fsnotify/fsnotify",
872 tag = "v1.4.7",
873)
874
875go_repository(
876 name = "com_github_genuinetools_pkg",
877 commit = "1c141f661797",
878 importpath = "github.com/genuinetools/pkg",
879)
880
881go_repository(
882 name = "com_github_genuinetools_reg",
883 commit = "d959057b30da",
884 importpath = "github.com/genuinetools/reg",
885)
886
887go_repository(
888 name = "com_github_ghodss_yaml",
889 importpath = "github.com/ghodss/yaml",
890 tag = "v1.0.0",
891)
892
893go_repository(
894 name = "com_github_gogo_protobuf",
895 commit = "65acae22fc9d",
896 importpath = "github.com/gogo/protobuf",
897)
898
899go_repository(
900 name = "com_github_golang_glog",
901 commit = "23def4e6c14b",
902 importpath = "github.com/golang/glog",
903)
904
905go_repository(
906 name = "com_github_golang_mock",
907 importpath = "github.com/golang/mock",
908 tag = "v1.2.0",
909)
910
911go_repository(
912 name = "com_github_golang_protobuf",
913 importpath = "github.com/golang/protobuf",
914 tag = "v1.3.2",
915)
916
917go_repository(
918 name = "com_github_google_btree",
919 importpath = "github.com/google/btree",
920 tag = "v1.0.0",
921)
922
923go_repository(
924 name = "com_github_google_go_cmp",
925 importpath = "github.com/google/go-cmp",
926 tag = "v0.3.0",
927)
928
929go_repository(
930 name = "com_github_google_go_jsonnet",
931 importpath = "github.com/google/go-jsonnet",
932 tag = "v0.12.1",
933)
934
935go_repository(
936 name = "com_github_gophercloud_gophercloud",
937 importpath = "github.com/gophercloud/gophercloud",
938 tag = "v0.1.0",
939)
940
941go_repository(
942 name = "com_github_gorilla_context",
943 importpath = "github.com/gorilla/context",
944 tag = "v1.1.1",
945)
946
947go_repository(
948 name = "com_github_gregjones_httpcache",
949 commit = "9cad4c3443a7",
950 importpath = "github.com/gregjones/httpcache",
951)
952
953go_repository(
954 name = "com_github_grpc_ecosystem_grpc_gateway",
955 importpath = "github.com/grpc-ecosystem/grpc-gateway",
956 tag = "v1.9.5",
957)
958
959go_repository(
960 name = "com_github_hpcloud_tail",
961 importpath = "github.com/hpcloud/tail",
962 tag = "v1.0.0",
963)
964
965go_repository(
966 name = "com_github_imdario_mergo",
967 importpath = "github.com/imdario/mergo",
968 tag = "v0.3.5",
969)
970
971go_repository(
972 name = "com_github_inconshreveable_mousetrap",
973 importpath = "github.com/inconshreveable/mousetrap",
974 tag = "v1.0.0",
975)
976
977go_repository(
978 name = "com_github_kisielk_gotool",
979 importpath = "github.com/kisielk/gotool",
980 tag = "v1.0.0",
981)
982
983go_repository(
984 name = "com_github_kr_pretty",
985 importpath = "github.com/kr/pretty",
986 tag = "v0.1.0",
987)
988
989go_repository(
990 name = "com_github_kr_pty",
991 importpath = "github.com/kr/pty",
992 tag = "v1.1.5",
993)
994
995go_repository(
996 name = "com_github_kr_text",
997 importpath = "github.com/kr/text",
998 tag = "v0.1.0",
999)
1000
1001go_repository(
1002 name = "com_github_mattn_go_isatty",
1003 importpath = "github.com/mattn/go-isatty",
1004 tag = "v0.0.4",
1005)
1006
1007go_repository(
1008 name = "com_github_microsoft_go_winio",
1009 importpath = "github.com/Microsoft/go-winio",
1010 tag = "v0.4.11",
1011)
1012
1013go_repository(
1014 name = "com_github_mitchellh_go_wordwrap",
1015 importpath = "github.com/mitchellh/go-wordwrap",
1016 tag = "v1.0.0",
1017)
1018
1019go_repository(
1020 name = "com_github_nvveen_gotty",
1021 commit = "cd527374f1e5",
1022 importpath = "github.com/Nvveen/Gotty",
1023)
1024
1025go_repository(
1026 name = "com_github_onsi_ginkgo",
1027 importpath = "github.com/onsi/ginkgo",
1028 tag = "v1.10.1",
1029)
1030
1031go_repository(
1032 name = "com_github_onsi_gomega",
1033 importpath = "github.com/onsi/gomega",
1034 tag = "v1.7.0",
1035)
1036
1037go_repository(
1038 name = "com_github_opencontainers_go_digest",
1039 importpath = "github.com/opencontainers/go-digest",
1040 tag = "v1.0.0-rc1",
1041)
1042
1043go_repository(
1044 name = "com_github_opencontainers_image_spec",
1045 importpath = "github.com/opencontainers/image-spec",
1046 tag = "v1.0.1",
1047)
1048
1049go_repository(
1050 name = "com_github_opencontainers_runc",
1051 importpath = "github.com/opencontainers/runc",
1052 tag = "v0.1.1",
1053)
1054
1055go_repository(
1056 name = "com_github_openzipkin_zipkin_go",
1057 importpath = "github.com/openzipkin/zipkin-go",
1058 tag = "v0.1.3",
1059)
1060
1061go_repository(
1062 name = "com_github_peterbourgon_diskv",
1063 importpath = "github.com/peterbourgon/diskv",
1064 tag = "v2.0.1",
1065)
1066
1067go_repository(
1068 name = "com_github_peterhellberg_link",
1069 importpath = "github.com/peterhellberg/link",
1070 tag = "v1.0.0",
1071)
1072
1073go_repository(
1074 name = "com_github_pkg_errors",
1075 importpath = "github.com/pkg/errors",
1076 tag = "v0.8.1",
1077)
1078
1079go_repository(
1080 name = "com_github_pmezard_go_difflib",
1081 importpath = "github.com/pmezard/go-difflib",
1082 tag = "v1.0.0",
1083)
1084
1085go_repository(
1086 name = "com_github_sergi_go_diff",
1087 commit = "feef008d51ad",
1088 importpath = "github.com/sergi/go-diff",
1089)
1090
1091go_repository(
1092 name = "com_github_shurcool_httpfs",
1093 commit = "809beceb2371",
1094 importpath = "github.com/shurcooL/httpfs",
1095)
1096
1097go_repository(
1098 name = "com_github_spf13_cobra",
1099 importpath = "github.com/spf13/cobra",
1100 tag = "v0.0.5",
1101)
1102
1103go_repository(
1104 name = "com_github_spf13_pflag",
1105 importpath = "github.com/spf13/pflag",
1106 tag = "v1.0.5",
1107)
1108
1109go_repository(
1110 name = "com_github_stretchr_objx",
1111 importpath = "github.com/stretchr/objx",
1112 tag = "v0.2.0",
1113)
1114
1115go_repository(
1116 name = "com_github_stretchr_testify",
1117 importpath = "github.com/stretchr/testify",
1118 tag = "v1.3.0",
1119)
1120
1121go_repository(
1122 name = "in_gopkg_airbrake_gobrake_v2",
1123 importpath = "gopkg.in/airbrake/gobrake.v2",
1124 tag = "v2.0.9",
1125)
1126
1127go_repository(
1128 name = "in_gopkg_check_v1",
1129 commit = "788fd7840127",
1130 importpath = "gopkg.in/check.v1",
1131)
1132
1133go_repository(
1134 name = "in_gopkg_fsnotify_v1",
1135 importpath = "gopkg.in/fsnotify.v1",
1136 tag = "v1.4.7",
1137)
1138
1139go_repository(
1140 name = "in_gopkg_gemnasium_logrus_airbrake_hook_v2",
1141 importpath = "gopkg.in/gemnasium/logrus-airbrake-hook.v2",
1142 tag = "v2.1.2",
1143)
1144
1145go_repository(
1146 name = "in_gopkg_tomb_v1",
1147 commit = "dd632973f1e7",
1148 importpath = "gopkg.in/tomb.v1",
1149)
1150
1151go_repository(
1152 name = "io_k8s_apiextensions_apiserver",
1153 build_file_proto_mode = "disable",
1154 commit = "b615a37f53e7",
1155 importpath = "k8s.io/apiextensions-apiserver",
1156)
1157
1158go_repository(
1159 name = "io_k8s_kube_openapi",
1160 commit = "30be4d16710a",
1161 importpath = "k8s.io/kube-openapi",
1162)
1163
1164go_repository(
1165 name = "io_opencensus_go",
1166 importpath = "go.opencensus.io",
1167 tag = "v0.21.0",
1168)
1169
1170go_repository(
1171 name = "io_opencensus_go_contrib_exporter_ocagent",
1172 importpath = "contrib.go.opencensus.io/exporter/ocagent",
1173 tag = "v0.6.0",
1174)
1175
1176go_repository(
1177 name = "org_apache_git_thrift_git",
1178 commit = "9b75e4fe745a",
1179 importpath = "git.apache.org/thrift.git",
1180)
1181
1182go_repository(
1183 name = "org_golang_google_api",
1184 importpath = "google.golang.org/api",
1185 tag = "v0.4.0",
1186)
1187
1188go_repository(
1189 name = "org_golang_google_appengine",
1190 importpath = "google.golang.org/appengine",
1191 tag = "v1.5.0",
1192)
1193
1194go_repository(
1195 name = "org_golang_google_genproto",
1196 commit = "54afdca5d873",
1197 importpath = "google.golang.org/genproto",
1198)
1199
1200go_repository(
1201 name = "org_golang_google_grpc",
1202 importpath = "google.golang.org/grpc",
1203 tag = "v1.23.1",
1204)
1205
1206go_repository(
1207 name = "org_golang_x_lint",
1208 commit = "d0100b6bd8b3",
1209 importpath = "golang.org/x/lint",
1210)
1211
1212go_repository(
1213 name = "org_golang_x_sync",
1214 commit = "112230192c58",
1215 importpath = "golang.org/x/sync",
1216)
1217
1218go_repository(
1219 name = "org_golang_x_sys",
1220 commit = "c7b8b68b1456",
1221 importpath = "golang.org/x/sys",
1222)
1223
1224go_repository(
1225 name = "org_golang_x_text",
1226 importpath = "golang.org/x/text",
1227 tag = "v0.3.2",
1228)
1229
1230go_repository(
1231 name = "org_golang_x_tools",
1232 commit = "5eefd052ad72",
1233 importpath = "golang.org/x/tools",
1234)
1235
1236go_repository(
1237 name = "tools_gotest",
1238 importpath = "gotest.tools",
1239 tag = "v2.2.0",
1240)
1241
1242go_repository(
1243 name = "com_github_alecthomas_template",
1244 commit = "a0175ee3bccc",
1245 importpath = "github.com/alecthomas/template",
1246)
1247
1248go_repository(
1249 name = "com_github_alecthomas_units",
1250 commit = "2efee857e7cf",
1251 importpath = "github.com/alecthomas/units",
1252)
1253
1254go_repository(
1255 name = "com_github_armon_consul_api",
1256 commit = "eb2c6b5be1b6",
1257 importpath = "github.com/armon/consul-api",
1258)
1259
1260go_repository(
1261 name = "com_github_azure_go_autorest_autorest",
1262 importpath = "github.com/Azure/go-autorest/autorest",
1263 tag = "v0.9.0",
1264)
1265
1266go_repository(
1267 name = "com_github_azure_go_autorest_autorest_adal",
1268 importpath = "github.com/Azure/go-autorest/autorest/adal",
1269 tag = "v0.5.0",
1270)
1271
1272go_repository(
1273 name = "com_github_azure_go_autorest_autorest_date",
1274 importpath = "github.com/Azure/go-autorest/autorest/date",
1275 tag = "v0.1.0",
1276)
1277
1278go_repository(
1279 name = "com_github_azure_go_autorest_autorest_mocks",
1280 importpath = "github.com/Azure/go-autorest/autorest/mocks",
1281 tag = "v0.2.0",
1282)
1283
1284go_repository(
1285 name = "com_github_azure_go_autorest_logger",
1286 importpath = "github.com/Azure/go-autorest/logger",
1287 tag = "v0.1.0",
1288)
1289
1290go_repository(
1291 name = "com_github_azure_go_autorest_tracing",
1292 importpath = "github.com/Azure/go-autorest/tracing",
1293 tag = "v0.5.0",
1294)
1295
1296go_repository(
1297 name = "com_github_bgentry_speakeasy",
1298 importpath = "github.com/bgentry/speakeasy",
1299 tag = "v0.1.0",
1300)
1301
1302go_repository(
1303 name = "com_github_blang_semver",
1304 importpath = "github.com/blang/semver",
1305 tag = "v3.5.0",
1306)
1307
1308go_repository(
1309 name = "com_github_burntsushi_toml",
1310 importpath = "github.com/BurntSushi/toml",
1311 tag = "v0.3.1",
1312)
1313
1314go_repository(
1315 name = "com_github_burntsushi_xgb",
1316 commit = "27f122750802",
1317 importpath = "github.com/BurntSushi/xgb",
1318)
1319
1320go_repository(
1321 name = "com_github_chai2010_gettext_go",
1322 commit = "c6fed771bfd5",
1323 importpath = "github.com/chai2010/gettext-go",
1324)
1325
1326go_repository(
1327 name = "com_github_cockroachdb_datadriven",
1328 commit = "80d97fb3cbaa",
1329 importpath = "github.com/cockroachdb/datadriven",
1330)
1331
1332go_repository(
1333 name = "com_github_coreos_etcd",
1334 importpath = "github.com/coreos/etcd",
1335 tag = "v3.3.10",
1336)
1337
1338go_repository(
1339 name = "com_github_coreos_go_etcd",
1340 importpath = "github.com/coreos/go-etcd",
1341 tag = "v2.0.0",
1342)
1343
1344go_repository(
1345 name = "com_github_coreos_go_oidc",
1346 importpath = "github.com/coreos/go-oidc",
1347 tag = "v2.1.0",
1348)
1349
1350go_repository(
1351 name = "com_github_coreos_go_semver",
1352 importpath = "github.com/coreos/go-semver",
1353 tag = "v0.3.0",
1354)
1355
1356go_repository(
1357 name = "com_github_coreos_go_systemd",
1358 commit = "95778dfbb74e",
1359 importpath = "github.com/coreos/go-systemd",
1360)
1361
1362go_repository(
1363 name = "com_github_coreos_pkg",
1364 commit = "97fdf19511ea",
1365 importpath = "github.com/coreos/pkg",
1366)
1367
1368go_repository(
1369 name = "com_github_cpuguy83_go_md2man",
1370 importpath = "github.com/cpuguy83/go-md2man",
1371 tag = "v1.0.10",
1372)
1373
1374go_repository(
1375 name = "com_github_creack_pty",
1376 importpath = "github.com/creack/pty",
1377 tag = "v1.1.7",
1378)
1379
1380go_repository(
1381 name = "com_github_daviddengcn_go_colortext",
1382 commit = "511bcaf42ccd",
1383 importpath = "github.com/daviddengcn/go-colortext",
1384)
1385
1386go_repository(
1387 name = "com_github_docker_spdystream",
1388 commit = "449fdfce4d96",
1389 importpath = "github.com/docker/spdystream",
1390)
1391
1392go_repository(
1393 name = "com_github_elazarl_goproxy",
1394 commit = "c4fc26588b6e",
1395 importpath = "github.com/elazarl/goproxy",
1396)
1397
1398go_repository(
1399 name = "com_github_emicklei_go_restful",
1400 importpath = "github.com/emicklei/go-restful",
1401 tag = "v2.9.5",
1402)
1403
1404go_repository(
1405 name = "com_github_exponent_io_jsonpath",
1406 commit = "d6023ce2651d",
1407 importpath = "github.com/exponent-io/jsonpath",
1408)
1409
1410go_repository(
1411 name = "com_github_fatih_camelcase",
1412 importpath = "github.com/fatih/camelcase",
1413 tag = "v1.0.0",
1414)
1415
1416go_repository(
1417 name = "com_github_fatih_color",
1418 importpath = "github.com/fatih/color",
1419 tag = "v1.7.0",
1420)
1421
1422go_repository(
1423 name = "com_github_globalsign_mgo",
1424 commit = "eeefdecb41b8",
1425 importpath = "github.com/globalsign/mgo",
1426)
1427
1428go_repository(
1429 name = "com_github_go_kit_kit",
1430 importpath = "github.com/go-kit/kit",
1431 tag = "v0.8.0",
1432)
1433
1434go_repository(
1435 name = "com_github_go_logfmt_logfmt",
1436 importpath = "github.com/go-logfmt/logfmt",
1437 tag = "v0.3.0",
1438)
1439
1440go_repository(
1441 name = "com_github_go_logr_logr",
1442 importpath = "github.com/go-logr/logr",
1443 tag = "v0.1.0",
1444)
1445
1446go_repository(
1447 name = "com_github_go_stack_stack",
1448 importpath = "github.com/go-stack/stack",
1449 tag = "v1.8.0",
1450)
1451
1452go_repository(
1453 name = "com_github_golang_groupcache",
1454 commit = "02826c3e7903",
1455 importpath = "github.com/golang/groupcache",
1456)
1457
1458go_repository(
1459 name = "com_github_golangplus_bytes",
1460 commit = "45c989fe5450",
1461 importpath = "github.com/golangplus/bytes",
1462)
1463
1464go_repository(
1465 name = "com_github_golangplus_fmt",
1466 commit = "2a5d6d7d2995",
1467 importpath = "github.com/golangplus/fmt",
1468)
1469
1470go_repository(
1471 name = "com_github_golangplus_testing",
1472 commit = "af21d9c3145e",
1473 importpath = "github.com/golangplus/testing",
1474)
1475
1476go_repository(
1477 name = "com_github_google_martian",
1478 importpath = "github.com/google/martian",
1479 tag = "v2.1.0",
1480)
1481
1482go_repository(
1483 name = "com_github_google_pprof",
1484 commit = "3ea8567a2e57",
1485 importpath = "github.com/google/pprof",
1486)
1487
1488go_repository(
1489 name = "com_github_google_uuid",
1490 importpath = "github.com/google/uuid",
1491 tag = "v1.1.1",
1492)
1493
1494go_repository(
1495 name = "com_github_googleapis_gax_go_v2",
1496 importpath = "github.com/googleapis/gax-go/v2",
1497 tag = "v2.0.4",
1498)
1499
1500go_repository(
1501 name = "com_github_gorilla_websocket",
1502 importpath = "github.com/gorilla/websocket",
1503 tag = "v1.4.0",
1504)
1505
1506go_repository(
1507 name = "com_github_grpc_ecosystem_go_grpc_middleware",
1508 commit = "f849b5445de4",
1509 importpath = "github.com/grpc-ecosystem/go-grpc-middleware",
1510)
1511
1512go_repository(
1513 name = "com_github_grpc_ecosystem_go_grpc_prometheus",
1514 importpath = "github.com/grpc-ecosystem/go-grpc-prometheus",
1515 tag = "v1.2.0",
1516)
1517
1518go_repository(
1519 name = "com_github_hashicorp_golang_lru",
1520 importpath = "github.com/hashicorp/golang-lru",
1521 tag = "v0.5.1",
1522)
1523
1524go_repository(
1525 name = "com_github_hashicorp_hcl",
1526 importpath = "github.com/hashicorp/hcl",
1527 tag = "v1.0.0",
1528)
1529
1530go_repository(
1531 name = "com_github_jonboulle_clockwork",
1532 importpath = "github.com/jonboulle/clockwork",
1533 tag = "v0.1.0",
1534)
1535
1536go_repository(
1537 name = "com_github_jstemmer_go_junit_report",
1538 commit = "af01ea7f8024",
1539 importpath = "github.com/jstemmer/go-junit-report",
1540)
1541
1542go_repository(
1543 name = "com_github_julienschmidt_httprouter",
1544 importpath = "github.com/julienschmidt/httprouter",
1545 tag = "v1.2.0",
1546)
1547
1548go_repository(
1549 name = "com_github_kisielk_errcheck",
1550 importpath = "github.com/kisielk/errcheck",
1551 tag = "v1.2.0",
1552)
1553
1554go_repository(
1555 name = "com_github_konsorten_go_windows_terminal_sequences",
1556 importpath = "github.com/konsorten/go-windows-terminal-sequences",
1557 tag = "v1.0.1",
1558)
1559
1560go_repository(
1561 name = "com_github_kr_logfmt",
1562 commit = "b84e30acd515",
1563 importpath = "github.com/kr/logfmt",
1564)
1565
1566go_repository(
1567 name = "com_github_liggitt_tabwriter",
1568 commit = "89fcab3d43de",
1569 importpath = "github.com/liggitt/tabwriter",
1570)
1571
1572go_repository(
1573 name = "com_github_lithammer_dedent",
1574 importpath = "github.com/lithammer/dedent",
1575 tag = "v1.1.0",
1576)
1577
1578go_repository(
1579 name = "com_github_magiconair_properties",
1580 importpath = "github.com/magiconair/properties",
1581 tag = "v1.8.0",
1582)
1583
1584go_repository(
1585 name = "com_github_makenowjust_heredoc",
1586 commit = "bb23615498cd",
1587 importpath = "github.com/MakeNowJust/heredoc",
1588)
1589
1590go_repository(
1591 name = "com_github_mattn_go_colorable",
1592 importpath = "github.com/mattn/go-colorable",
1593 tag = "v0.0.9",
1594)
1595
1596go_repository(
1597 name = "com_github_mattn_go_runewidth",
1598 importpath = "github.com/mattn/go-runewidth",
1599 tag = "v0.0.2",
1600)
1601
1602go_repository(
1603 name = "com_github_mitchellh_go_homedir",
1604 importpath = "github.com/mitchellh/go-homedir",
1605 tag = "v1.1.0",
1606)
1607
1608go_repository(
1609 name = "com_github_morikuni_aec",
1610 importpath = "github.com/morikuni/aec",
1611 tag = "v1.0.0",
1612)
1613
1614go_repository(
1615 name = "com_github_munnerz_goautoneg",
1616 commit = "a7dc8b61c822",
1617 importpath = "github.com/munnerz/goautoneg",
1618)
1619
1620go_repository(
1621 name = "com_github_mwitkow_go_conntrack",
1622 commit = "cc309e4a2223",
1623 importpath = "github.com/mwitkow/go-conntrack",
1624)
1625
1626go_repository(
1627 name = "com_github_mxk_go_flowrate",
1628 commit = "cca7078d478f",
1629 importpath = "github.com/mxk/go-flowrate",
1630)
1631
1632go_repository(
1633 name = "com_github_nytimes_gziphandler",
1634 commit = "56545f4a5d46",
1635 importpath = "github.com/NYTimes/gziphandler",
1636)
1637
1638go_repository(
1639 name = "com_github_olekukonko_tablewriter",
1640 commit = "a0225b3f23b5",
1641 importpath = "github.com/olekukonko/tablewriter",
1642)
1643
1644go_repository(
1645 name = "com_github_pelletier_go_toml",
1646 importpath = "github.com/pelletier/go-toml",
1647 tag = "v1.2.0",
1648)
1649
1650go_repository(
1651 name = "com_github_pquerna_cachecontrol",
1652 commit = "0dec1b30a021",
1653 importpath = "github.com/pquerna/cachecontrol",
1654)
1655
1656go_repository(
1657 name = "com_github_remyoudompheng_bigfft",
1658 commit = "52369c62f446",
1659 importpath = "github.com/remyoudompheng/bigfft",
1660)
1661
1662go_repository(
1663 name = "com_github_rogpeppe_fastuuid",
1664 commit = "6724a57986af",
1665 importpath = "github.com/rogpeppe/fastuuid",
1666)
1667
1668go_repository(
1669 name = "com_github_russross_blackfriday",
1670 importpath = "github.com/russross/blackfriday",
1671 tag = "v1.5.2",
1672)
1673
1674go_repository(
1675 name = "com_github_soheilhy_cmux",
1676 importpath = "github.com/soheilhy/cmux",
1677 tag = "v0.1.4",
1678)
1679
1680go_repository(
1681 name = "com_github_spf13_afero",
1682 importpath = "github.com/spf13/afero",
1683 tag = "v1.2.2",
1684)
1685
1686go_repository(
1687 name = "com_github_spf13_cast",
1688 importpath = "github.com/spf13/cast",
1689 tag = "v1.3.0",
1690)
1691
1692go_repository(
1693 name = "com_github_spf13_jwalterweatherman",
1694 importpath = "github.com/spf13/jwalterweatherman",
1695 tag = "v1.0.0",
1696)
1697
1698go_repository(
1699 name = "com_github_spf13_viper",
1700 importpath = "github.com/spf13/viper",
1701 tag = "v1.3.2",
1702)
1703
1704go_repository(
1705 name = "com_github_tmc_grpc_websocket_proxy",
1706 commit = "89b8d40f7ca8",
1707 importpath = "github.com/tmc/grpc-websocket-proxy",
1708)
1709
1710go_repository(
1711 name = "com_github_ugorji_go_codec",
1712 commit = "d75b2dcb6bc8",
1713 importpath = "github.com/ugorji/go/codec",
1714)
1715
1716go_repository(
1717 name = "com_github_xiang90_probing",
1718 commit = "43a291ad63a2",
1719 importpath = "github.com/xiang90/probing",
1720)
1721
1722go_repository(
1723 name = "com_github_xlab_handysort",
1724 commit = "fb3537ed64a1",
1725 importpath = "github.com/xlab/handysort",
1726)
1727
1728go_repository(
1729 name = "com_github_xordataexchange_crypt",
1730 commit = "b2862e3d0a77",
1731 importpath = "github.com/xordataexchange/crypt",
1732)
1733
1734go_repository(
1735 name = "in_gopkg_alecthomas_kingpin_v2",
1736 importpath = "gopkg.in/alecthomas/kingpin.v2",
1737 tag = "v2.2.6",
1738)
1739
1740go_repository(
1741 name = "in_gopkg_cheggaaa_pb_v1",
1742 importpath = "gopkg.in/cheggaaa/pb.v1",
1743 tag = "v1.0.25",
1744)
1745
1746go_repository(
1747 name = "in_gopkg_natefinch_lumberjack_v2",
1748 importpath = "gopkg.in/natefinch/lumberjack.v2",
1749 tag = "v2.0.0",
1750)
1751
1752go_repository(
1753 name = "in_gopkg_resty_v1",
1754 importpath = "gopkg.in/resty.v1",
1755 tag = "v1.12.0",
1756)
1757
1758go_repository(
1759 name = "in_gopkg_square_go_jose_v2",
1760 importpath = "gopkg.in/square/go-jose.v2",
1761 tag = "v2.2.2",
1762)
1763
1764go_repository(
1765 name = "io_etcd_go_bbolt",
1766 importpath = "go.etcd.io/bbolt",
1767 tag = "v1.3.3",
1768)
1769
1770go_repository(
1771 name = "io_etcd_go_etcd",
1772 commit = "3cf2f69b5738",
1773 importpath = "go.etcd.io/etcd",
1774)
1775
1776go_repository(
1777 name = "io_k8s_apiserver",
1778 commit = "f2537b84c964",
1779 importpath = "k8s.io/apiserver",
1780)
1781
1782go_repository(
1783 name = "io_k8s_cli_runtime",
1784 commit = "ec04ad4dbd24",
1785 importpath = "k8s.io/cli-runtime",
1786)
1787
1788go_repository(
1789 name = "io_k8s_code_generator",
1790 commit = "2a85f169f05f",
1791 importpath = "k8s.io/code-generator",
1792)
1793
1794go_repository(
1795 name = "io_k8s_component_base",
1796 commit = "ea09a2678486",
1797 importpath = "k8s.io/component-base",
1798)
1799
1800go_repository(
1801 name = "io_k8s_gengo",
1802 commit = "26a664648505",
1803 importpath = "k8s.io/gengo",
1804)
1805
1806go_repository(
1807 name = "io_k8s_kubectl",
1808 commit = "fbc5d36fee2d",
1809 importpath = "k8s.io/kubectl",
1810)
1811
1812go_repository(
1813 name = "io_k8s_metrics",
1814 commit = "dea8d0e6b550",
1815 importpath = "k8s.io/metrics",
1816)
1817
1818go_repository(
1819 name = "io_k8s_sigs_kustomize",
1820 importpath = "sigs.k8s.io/kustomize",
1821 tag = "v2.0.3",
1822)
1823
1824go_repository(
1825 name = "io_k8s_sigs_structured_merge_diff",
1826 commit = "b1b620dd3f06",
1827 importpath = "sigs.k8s.io/structured-merge-diff",
1828)
1829
1830go_repository(
1831 name = "org_golang_x_exp",
1832 commit = "4b39c73a6495",
1833 importpath = "golang.org/x/exp",
1834)
1835
1836go_repository(
1837 name = "org_golang_x_image",
1838 commit = "0694c2d4d067",
1839 importpath = "golang.org/x/image",
1840)
1841
1842go_repository(
1843 name = "org_golang_x_mobile",
1844 commit = "d3739f865fa6",
1845 importpath = "golang.org/x/mobile",
1846)
1847
1848go_repository(
1849 name = "org_golang_x_xerrors",
1850 commit = "a985d3407aa7",
1851 importpath = "golang.org/x/xerrors",
1852)
1853
1854go_repository(
1855 name = "org_gonum_v1_gonum",
1856 commit = "3d26580ed485",
1857 importpath = "gonum.org/v1/gonum",
1858)
1859
1860go_repository(
1861 name = "org_gonum_v1_netlib",
1862 commit = "76723241ea4e",
1863 importpath = "gonum.org/v1/netlib",
1864)
1865
1866go_repository(
1867 name = "org_modernc_cc",
1868 importpath = "modernc.org/cc",
1869 tag = "v1.0.0",
1870)
1871
1872go_repository(
1873 name = "org_modernc_golex",
1874 importpath = "modernc.org/golex",
1875 tag = "v1.0.0",
1876)
1877
1878go_repository(
1879 name = "org_modernc_mathutil",
1880 importpath = "modernc.org/mathutil",
1881 tag = "v1.0.0",
1882)
1883
1884go_repository(
1885 name = "org_modernc_strutil",
1886 importpath = "modernc.org/strutil",
1887 tag = "v1.0.0",
1888)
1889
1890go_repository(
1891 name = "org_modernc_xc",
1892 importpath = "modernc.org/xc",
1893 tag = "v1.0.0",
1894)
1895
1896go_repository(
1897 name = "org_uber_go_atomic",
1898 importpath = "go.uber.org/atomic",
1899 tag = "v1.3.2",
1900)
1901
1902go_repository(
1903 name = "org_uber_go_multierr",
1904 importpath = "go.uber.org/multierr",
1905 tag = "v1.1.0",
1906)
1907
1908go_repository(
1909 name = "org_uber_go_zap",
1910 importpath = "go.uber.org/zap",
1911 tag = "v1.10.0",
1912)
Sergiusz Bazanskic315aac2020-01-02 16:43:39 +01001913
1914go_repository(
1915 name = "com_github_dgraph_io_ristretto",
1916 commit = "83508260cb49a2c3261c2774c991870fd18b5a1b",
1917 importpath = "github.com/dgraph-io/ristretto",
1918)
1919
1920go_repository(
1921 name = "com_github_cespare_xxhash",
1922 commit = "d7df74196a9e781ede915320c11c378c1b2f3a1f",
1923 importpath = "github.com/cespare/xxhash",
1924)
1925
1926go_repository(
1927 name = "com_github_ulule_limiter_v3",
1928 commit = "6911899e37a5788df86f770b3f85c1c3eb0313d5",
1929 importpath = "github.com/ulule/limiter/v3",
1930 remote = "https://github.com/ulule/limiter",
1931 vcs = "git",
1932)
Sergiusz Bazanskia8854882020-01-05 00:34:38 +01001933
1934go_repository(
1935 name = "com_github_go_telegram_bot_api_telegram_bot_api",
1936 commit = "b33efeebc78563cfeddf19563781cffb16aaabdf",
1937 importpath = "github.com/go-telegram-bot-api/telegram-bot-api",
1938)
1939
1940go_repository(
1941 name = "com_github_technoweenie_multipartstreamer",
1942 commit = "a90a01d73ae432e2611d178c18367fbaa13e0154",
1943 importpath = "github.com/technoweenie/multipartstreamer",
1944)
1945
1946go_repository(
1947 name = "in_gopkg_irc_v3",
1948 commit = "d07dcb9293789fdc99c797d3499a5799bc343b86",
1949 importpath = "gopkg.in/irc.v3",
1950)