• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2023 The Bazel Authors. All rights reserved.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#     http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15"This file managed by `bazel run //:gazelle_update_repos`"
16
17load("@bazel_gazelle//:deps.bzl", _go_repository = "go_repository")
18
19def go_repository(name, **kwargs):
20    if name not in native.existing_rules():
21        _go_repository(name = name, **kwargs)
22
23def gazelle_deps():
24    "Fetch go dependencies"
25    go_repository(
26        name = "co_honnef_go_tools",
27        importpath = "honnef.co/go/tools",
28        sum = "h1:/hemPrYIhOhy8zYrNj+069zDB68us2sMGsfkFJO0iZs=",
29        version = "v0.0.0-20190523083050-ea95bdfd59fc",
30    )
31
32    go_repository(
33        name = "com_github_bazelbuild_buildtools",
34        build_naming_convention = "go_default_library",
35        importpath = "github.com/bazelbuild/buildtools",
36        sum = "h1:jhiMzJ+8unnLRtV8rpbWBFE9pFNzIqgUTyZU5aA++w8=",
37        version = "v0.0.0-20221004120235-7186f635531b",
38    )
39
40    go_repository(
41        name = "com_github_bmatcuk_doublestar",
42        importpath = "github.com/bmatcuk/doublestar",
43        sum = "h1:gPypJ5xD31uhX6Tf54sDPUOBXTqKH4c9aPY66CyQrS0=",
44        version = "v1.3.4",
45    )
46
47    go_repository(
48        name = "com_github_burntsushi_toml",
49        importpath = "github.com/BurntSushi/toml",
50        sum = "h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=",
51        version = "v0.3.1",
52    )
53    go_repository(
54        name = "com_github_census_instrumentation_opencensus_proto",
55        importpath = "github.com/census-instrumentation/opencensus-proto",
56        sum = "h1:glEXhBS5PSLLv4IXzLA5yPRVX4bilULVyxxbrfOtDAk=",
57        version = "v0.2.1",
58    )
59    go_repository(
60        name = "com_github_chzyer_logex",
61        importpath = "github.com/chzyer/logex",
62        sum = "h1:Swpa1K6QvQznwJRcfTfQJmTE72DqScAa40E+fbHEXEE=",
63        version = "v1.1.10",
64    )
65    go_repository(
66        name = "com_github_chzyer_readline",
67        importpath = "github.com/chzyer/readline",
68        sum = "h1:fY5BOSpyZCqRo5OhCuC+XN+r/bBCmeuuJtjz+bCNIf8=",
69        version = "v0.0.0-20180603132655-2972be24d48e",
70    )
71    go_repository(
72        name = "com_github_chzyer_test",
73        importpath = "github.com/chzyer/test",
74        sum = "h1:q763qf9huN11kDQavWsoZXJNW3xEE4JJyHa5Q25/sd8=",
75        version = "v0.0.0-20180213035817-a1ea475d72b1",
76    )
77    go_repository(
78        name = "com_github_client9_misspell",
79        importpath = "github.com/client9/misspell",
80        sum = "h1:ta993UF76GwbvJcIo3Y68y/M3WxlpEHPWIGDkJYwzJI=",
81        version = "v0.3.4",
82    )
83    go_repository(
84        name = "com_github_emirpasic_gods",
85        importpath = "github.com/emirpasic/gods",
86        sum = "h1:FXtiHYKDGKCW2KzwZKx0iC0PQmdlorYgdFG9jPXJ1Bc=",
87        version = "v1.18.1",
88    )
89    go_repository(
90        name = "com_github_envoyproxy_go_control_plane",
91        importpath = "github.com/envoyproxy/go-control-plane",
92        sum = "h1:4cmBvAEBNJaGARUEs3/suWRyfyBfhf7I60WBZq+bv2w=",
93        version = "v0.9.1-0.20191026205805-5f8ba28d4473",
94    )
95    go_repository(
96        name = "com_github_envoyproxy_protoc_gen_validate",
97        importpath = "github.com/envoyproxy/protoc-gen-validate",
98        sum = "h1:EQciDnbrYxy13PgWoY8AqoxGiPrpgBZ1R8UNe3ddc+A=",
99        version = "v0.1.0",
100    )
101
102    go_repository(
103        name = "com_github_ghodss_yaml",
104        importpath = "github.com/ghodss/yaml",
105        sum = "h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=",
106        version = "v1.0.0",
107    )
108    go_repository(
109        name = "com_github_golang_glog",
110        importpath = "github.com/golang/glog",
111        sum = "h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58=",
112        version = "v0.0.0-20160126235308-23def4e6c14b",
113    )
114    go_repository(
115        name = "com_github_golang_mock",
116        importpath = "github.com/golang/mock",
117        sum = "h1:G5FRp8JnTd7RQH5kemVNlMeyXQAztQ3mOWV95KxsXH8=",
118        version = "v1.1.1",
119    )
120    go_repository(
121        name = "com_github_golang_protobuf",
122        importpath = "github.com/golang/protobuf",
123        sum = "h1:JjCZWpVbqXDqFVmTfYWEVTMIYrL/NPdPSCHPJ0T/raM=",
124        version = "v1.4.3",
125    )
126    go_repository(
127        name = "com_github_google_go_cmp",
128        importpath = "github.com/google/go-cmp",
129        sum = "h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=",
130        version = "v0.5.9",
131    )
132
133    go_repository(
134        name = "com_github_prometheus_client_model",
135        importpath = "github.com/prometheus/client_model",
136        sum = "h1:gQz4mCbXsO+nc9n1hCxHcGA3Zx3Eo+UHZoInFGUIXNM=",
137        version = "v0.0.0-20190812154241-14fe0d1b01d4",
138    )
139    go_repository(
140        name = "com_github_yuin_goldmark",
141        importpath = "github.com/yuin/goldmark",
142        sum = "h1:fVcFKWvrslecOb/tg+Cc05dkeYx540o0FuFt3nUVDoE=",
143        version = "v1.4.13",
144    )
145    go_repository(
146        name = "com_google_cloud_go",
147        importpath = "cloud.google.com/go",
148        sum = "h1:e0WKqKTd5BnrG8aKH3J3h+QvEIQtSUcf2n5UZ5ZgLtQ=",
149        version = "v0.26.0",
150    )
151    go_repository(
152        name = "in_gopkg_check_v1",
153        importpath = "gopkg.in/check.v1",
154        sum = "h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=",
155        version = "v0.0.0-20161208181325-20d25e280405",
156    )
157    go_repository(
158        name = "in_gopkg_yaml_v2",
159        importpath = "gopkg.in/yaml.v2",
160        sum = "h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=",
161        version = "v2.4.0",
162    )
163    go_repository(
164        name = "net_starlark_go",
165        importpath = "go.starlark.net",
166        sum = "h1:xwwDQW5We85NaTk2APgoN9202w/l0DVGp+GZMfsrh7s=",
167        version = "v0.0.0-20210223155950-e043a3d3c984",
168    )
169    go_repository(
170        name = "org_golang_google_appengine",
171        importpath = "google.golang.org/appengine",
172        sum = "h1:/wp5JvzpHIxhs/dumFmF7BXTf3Z+dd4uXta4kVyO508=",
173        version = "v1.4.0",
174    )
175    go_repository(
176        name = "org_golang_google_genproto",
177        importpath = "google.golang.org/genproto",
178        sum = "h1:+kGHl1aib/qcwaRi1CbqBZ1rk19r85MNUf8HaBghugY=",
179        version = "v0.0.0-20200526211855-cb27e3aa2013",
180    )
181    go_repository(
182        name = "org_golang_google_grpc",
183        importpath = "google.golang.org/grpc",
184        sum = "h1:rRYRFMVgRv6E0D70Skyfsr28tDXIuuPZyWGMPdMcnXg=",
185        version = "v1.27.0",
186    )
187    go_repository(
188        name = "org_golang_google_protobuf",
189        importpath = "google.golang.org/protobuf",
190        sum = "h1:Ejskq+SyPohKW+1uil0JJMtmHCgJPJ/qWTxr8qp+R4c=",
191        version = "v1.25.0",
192    )
193    go_repository(
194        name = "org_golang_x_crypto",
195        importpath = "golang.org/x/crypto",
196        sum = "h1:VklqNMn3ovrHsnt90PveolxSbWFaJdECFbxSq0Mqo2M=",
197        version = "v0.0.0-20190308221718-c2843e01d9a2",
198    )
199    go_repository(
200        name = "org_golang_x_exp",
201        importpath = "golang.org/x/exp",
202        sum = "h1:c2HOrn5iMezYjSlGPncknSEr/8x5LELb/ilJbXi9DEA=",
203        version = "v0.0.0-20190121172915-509febef88a4",
204    )
205    go_repository(
206        name = "org_golang_x_lint",
207        importpath = "golang.org/x/lint",
208        sum = "h1:XQyxROzUlZH+WIQwySDgnISgOivlhjIEwaQaJEJrrN0=",
209        version = "v0.0.0-20190313153728-d0100b6bd8b3",
210    )
211    go_repository(
212        name = "org_golang_x_mod",
213        importpath = "golang.org/x/mod",
214        sum = "h1:6zppjxzCulZykYSLyVDYbneBfbaBIQPYMevg0bEwv2s=",
215        version = "v0.6.0-dev.0.20220419223038-86c51ed26bb4",
216    )
217    go_repository(
218        name = "org_golang_x_net",
219        importpath = "golang.org/x/net",
220        sum = "h1:PxfKdU9lEEDYjdIzOtC4qFWgkU2rGHdKlKowJSMN9h0=",
221        version = "v0.0.0-20220722155237-a158d28d115b",
222    )
223    go_repository(
224        name = "org_golang_x_oauth2",
225        importpath = "golang.org/x/oauth2",
226        sum = "h1:vEDujvNQGv4jgYKudGeI/+DAX4Jffq6hpD55MmoEvKs=",
227        version = "v0.0.0-20180821212333-d2e6202438be",
228    )
229    go_repository(
230        name = "org_golang_x_sync",
231        importpath = "golang.org/x/sync",
232        sum = "h1:uVc8UZUe6tr40fFVnUP5Oj+veunVezqYl9z7DYw9xzw=",
233        version = "v0.0.0-20220722155255-886fb9371eb4",
234    )
235    go_repository(
236        name = "org_golang_x_sys",
237        importpath = "golang.org/x/sys",
238        sum = "h1:k5II8e6QD8mITdi+okbbmR/cIyEbeXLBhy5Ha4nevyc=",
239        version = "v0.0.0-20221010170243-090e33056c14",
240    )
241    go_repository(
242        name = "org_golang_x_text",
243        importpath = "golang.org/x/text",
244        sum = "h1:olpwvP2KacW1ZWvsR7uQhoyTYvKAupfQrRGBFM352Gk=",
245        version = "v0.3.7",
246    )
247    go_repository(
248        name = "org_golang_x_tools",
249        build_directives = [
250            "gazelle:exclude **/testdata/**/*",
251        ],
252        importpath = "golang.org/x/tools",
253        sum = "h1:VveCTK38A2rkS8ZqFY25HIDFscX5X9OoEhJd3quQmXU=",
254        version = "v0.1.12",
255    )
256    go_repository(
257        name = "org_golang_x_xerrors",
258        importpath = "golang.org/x/xerrors",
259        sum = "h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE=",
260        version = "v0.0.0-20200804184101-5ec99f83aff1",
261    )
262