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