build
cmd
zoekt
zoekt-archive-index
zoekt-dynamic-indexserver
zoekt-git-clone
zoekt-git-index
zoekt-index
zoekt-indexserver
zoekt-merge-index
zoekt-mirror-bitbucket-server
zoekt-mirror-gerrit
zoekt-mirror-github
zoekt-mirror-gitiles
zoekt-mirror-gitlab
zoekt-repo-index
zoekt-sourcegraph-indexserver
zoekt-test
zoekt-webserver
ctags
debugserver
gitindex
grpc
ignore
internal
mockSearcher
otlpenv
profiler
tracer
json
query
rpc
shards
stream
testdata
trace
web
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
2
-
3
3
-
# gazelle:prefix github.com/sourcegraph/zoekt
4
4
-
# gazelle:build_file_name BUILD.bazel
5
5
-
load("@bazel_gazelle//:def.bzl", "gazelle")
6
6
-
7
7
-
gazelle(name = "gazelle")
8
8
-
9
9
-
gazelle(
10
10
-
name = "gazelle-update-repos",
11
11
-
args = [
12
12
-
"-from_file=go.mod",
13
13
-
"-to_macro=deps.bzl%go_dependencies",
14
14
-
"-prune",
15
15
-
"-build_file_proto_mode=disable_global",
16
16
-
],
17
17
-
command = "update-repos",
18
18
-
)
19
19
-
20
20
-
go_library(
21
21
-
name = "zoekt",
22
22
-
srcs = [
23
23
-
"api.go",
24
24
-
"api_proto.go",
25
25
-
"bits.go",
26
26
-
"btree.go",
27
27
-
"contentprovider.go",
28
28
-
"eval.go",
29
29
-
"hititer.go",
30
30
-
"indexbuilder.go",
31
31
-
"indexdata.go",
32
32
-
"indexfile.go",
33
33
-
"limit.go",
34
34
-
"marshal.go",
35
35
-
"matchiter.go",
36
36
-
"matchtree.go",
37
37
-
"merge.go",
38
38
-
"read.go",
39
39
-
"section.go",
40
40
-
"toc.go",
41
41
-
"tombstones.go",
42
42
-
"tombstones_unix.go",
43
43
-
"tombstones_windows.go",
44
44
-
"write.go",
45
45
-
],
46
46
-
importpath = "github.com/sourcegraph/zoekt",
47
47
-
visibility = ["//visibility:public"],
48
48
-
deps = [
49
49
-
"//grpc/v1:grpc",
50
50
-
"//query",
51
51
-
"@com_github_edsrzf_mmap_go//:mmap-go",
52
52
-
"@com_github_go_enry_go_enry_v2//:go-enry",
53
53
-
"@com_github_go_enry_go_enry_v2//data",
54
54
-
"@com_github_grafana_regexp//:regexp",
55
55
-
"@com_github_rs_xid//:xid",
56
56
-
"@org_golang_google_protobuf//types/known/durationpb",
57
57
-
"@org_golang_google_protobuf//types/known/timestamppb",
58
58
-
"@org_golang_x_exp//slices",
59
59
-
] + select({
60
60
-
"@io_bazel_rules_go//go/platform:aix": [
61
61
-
"@org_golang_x_sys//unix",
62
62
-
],
63
63
-
"@io_bazel_rules_go//go/platform:android": [
64
64
-
"@org_golang_x_sys//unix",
65
65
-
],
66
66
-
"@io_bazel_rules_go//go/platform:darwin": [
67
67
-
"@org_golang_x_sys//unix",
68
68
-
],
69
69
-
"@io_bazel_rules_go//go/platform:dragonfly": [
70
70
-
"@org_golang_x_sys//unix",
71
71
-
],
72
72
-
"@io_bazel_rules_go//go/platform:freebsd": [
73
73
-
"@org_golang_x_sys//unix",
74
74
-
],
75
75
-
"@io_bazel_rules_go//go/platform:illumos": [
76
76
-
"@org_golang_x_sys//unix",
77
77
-
],
78
78
-
"@io_bazel_rules_go//go/platform:ios": [
79
79
-
"@org_golang_x_sys//unix",
80
80
-
],
81
81
-
"@io_bazel_rules_go//go/platform:js": [
82
82
-
"@org_golang_x_sys//unix",
83
83
-
],
84
84
-
"@io_bazel_rules_go//go/platform:linux": [
85
85
-
"@org_golang_x_sys//unix",
86
86
-
],
87
87
-
"@io_bazel_rules_go//go/platform:netbsd": [
88
88
-
"@org_golang_x_sys//unix",
89
89
-
],
90
90
-
"@io_bazel_rules_go//go/platform:openbsd": [
91
91
-
"@org_golang_x_sys//unix",
92
92
-
],
93
93
-
"@io_bazel_rules_go//go/platform:plan9": [
94
94
-
"@org_golang_x_sys//unix",
95
95
-
],
96
96
-
"@io_bazel_rules_go//go/platform:solaris": [
97
97
-
"@org_golang_x_sys//unix",
98
98
-
],
99
99
-
"//conditions:default": [],
100
100
-
}),
101
101
-
)
102
102
-
103
103
-
go_test(
104
104
-
name = "zoekt_test",
105
105
-
srcs = [
106
106
-
"api_proto_test.go",
107
107
-
"api_test.go",
108
108
-
"bits_test.go",
109
109
-
"btree_test.go",
110
110
-
"contentprovider_test.go",
111
111
-
"eval_test.go",
112
112
-
"hititer_test.go",
113
113
-
"index_test.go",
114
114
-
"indexdata_test.go",
115
115
-
"limit_test.go",
116
116
-
"marshal_test.go",
117
117
-
"matchtree_test.go",
118
118
-
"merge_test.go",
119
119
-
"read_test.go",
120
120
-
"tombstones_test.go",
121
121
-
],
122
122
-
data = ["//testdata"],
123
123
-
embed = [":zoekt"],
124
124
-
embedsrcs = ["//testdata:testdata"], #keep
125
125
-
deps = [
126
126
-
"//grpc/v1:grpc",
127
127
-
"//query",
128
128
-
"@com_github_google_go_cmp//cmp",
129
129
-
"@com_github_google_go_cmp//cmp/cmpopts",
130
130
-
"@com_github_grafana_regexp//:regexp",
131
131
-
"@com_github_roaringbitmap_roaring//:roaring",
132
132
-
"@org_golang_google_protobuf//proto",
133
133
-
"@org_golang_x_exp//slices",
134
134
-
],
135
135
-
)
···
1
1
-
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
2
2
-
3
3
-
http_archive(
4
4
-
name = "bazel_skylib",
5
5
-
sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506",
6
6
-
urls = [
7
7
-
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
8
8
-
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
9
9
-
],
10
10
-
)
11
11
-
12
12
-
load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
13
13
-
14
14
-
bazel_skylib_workspace()
15
15
-
16
16
-
http_archive(
17
17
-
name = "aspect_bazel_lib",
18
18
-
sha256 = "2518c757715d4f5fc7cc7e0a68742dd1155eaafc78fb9196b8a18e13a738cea2",
19
19
-
strip_prefix = "bazel-lib-1.28.0",
20
20
-
url = "https://github.com/aspect-build/bazel-lib/releases/download/v1.28.0/bazel-lib-v1.28.0.tar.gz",
21
21
-
)
22
22
-
23
23
-
http_archive(
24
24
-
name = "io_bazel_rules_go",
25
25
-
sha256 = "dd926a88a564a9246713a9c00b35315f54cbd46b31a26d5d8fb264c07045f05d",
26
26
-
urls = [
27
27
-
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.38.1/rules_go-v0.38.1.zip",
28
28
-
"https://github.com/bazelbuild/rules_go/releases/download/v0.38.1/rules_go-v0.38.1.zip",
29
29
-
],
30
30
-
)
31
31
-
32
32
-
http_archive(
33
33
-
name = "bazel_gazelle",
34
34
-
sha256 = "ecba0f04f96b4960a5b250c8e8eeec42281035970aa8852dda73098274d14a1d",
35
35
-
urls = [
36
36
-
"https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.29.0/bazel-gazelle-v0.29.0.tar.gz",
37
37
-
"https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.29.0/bazel-gazelle-v0.29.0.tar.gz",
38
38
-
],
39
39
-
)
40
40
-
41
41
-
http_archive(
42
42
-
name = "com_google_protobuf",
43
43
-
sha256 = "6aff9834fd7c540875e1836967c8d14c6897e3785a2efac629f69860fb7834ff",
44
44
-
strip_prefix = "protobuf-3.15.0",
45
45
-
urls = [
46
46
-
"https://github.com/protocolbuffers/protobuf/archive/v3.15.0.tar.gz",
47
47
-
],
48
48
-
)
49
49
-
50
50
-
# Go toolchain setup
51
51
-
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
52
52
-
load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies")
53
53
-
load("//:deps.bzl", "go_dependencies")
54
54
-
55
55
-
# gazelle:repository_macro deps.bzl%go_dependencies
56
56
-
go_dependencies()
57
57
-
58
58
-
go_rules_dependencies()
59
59
-
60
60
-
go_register_toolchains(
61
61
-
version = "1.19.6",
62
62
-
)
63
63
-
64
64
-
gazelle_dependencies()
65
65
-
66
66
-
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
67
67
-
68
68
-
protobuf_deps()
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
2
-
3
3
-
go_library(
4
4
-
name = "build",
5
5
-
srcs = [
6
6
-
"builder.go",
7
7
-
"builder_unix.go",
8
8
-
"ctags.go",
9
9
-
],
10
10
-
importpath = "github.com/sourcegraph/zoekt/build",
11
11
-
visibility = ["//visibility:public"],
12
12
-
deps = [
13
13
-
"//:zoekt",
14
14
-
"//ctags",
15
15
-
"@com_github_bmatcuk_doublestar//:doublestar",
16
16
-
"@com_github_grafana_regexp//:regexp",
17
17
-
"@com_github_rs_xid//:xid",
18
18
-
"@in_gopkg_natefinch_lumberjack_v2//:lumberjack_v2",
19
19
-
] + select({
20
20
-
"@io_bazel_rules_go//go/platform:aix": [
21
21
-
"@org_golang_x_sys//unix",
22
22
-
],
23
23
-
"@io_bazel_rules_go//go/platform:android": [
24
24
-
"@org_golang_x_sys//unix",
25
25
-
],
26
26
-
"@io_bazel_rules_go//go/platform:darwin": [
27
27
-
"@org_golang_x_sys//unix",
28
28
-
],
29
29
-
"@io_bazel_rules_go//go/platform:dragonfly": [
30
30
-
"@org_golang_x_sys//unix",
31
31
-
],
32
32
-
"@io_bazel_rules_go//go/platform:freebsd": [
33
33
-
"@org_golang_x_sys//unix",
34
34
-
],
35
35
-
"@io_bazel_rules_go//go/platform:illumos": [
36
36
-
"@org_golang_x_sys//unix",
37
37
-
],
38
38
-
"@io_bazel_rules_go//go/platform:ios": [
39
39
-
"@org_golang_x_sys//unix",
40
40
-
],
41
41
-
"@io_bazel_rules_go//go/platform:js": [
42
42
-
"@org_golang_x_sys//unix",
43
43
-
],
44
44
-
"@io_bazel_rules_go//go/platform:linux": [
45
45
-
"@org_golang_x_sys//unix",
46
46
-
],
47
47
-
"@io_bazel_rules_go//go/platform:netbsd": [
48
48
-
"@org_golang_x_sys//unix",
49
49
-
],
50
50
-
"@io_bazel_rules_go//go/platform:openbsd": [
51
51
-
"@org_golang_x_sys//unix",
52
52
-
],
53
53
-
"@io_bazel_rules_go//go/platform:plan9": [
54
54
-
"@org_golang_x_sys//unix",
55
55
-
],
56
56
-
"@io_bazel_rules_go//go/platform:solaris": [
57
57
-
"@org_golang_x_sys//unix",
58
58
-
],
59
59
-
"//conditions:default": [],
60
60
-
}),
61
61
-
)
62
62
-
63
63
-
go_test(
64
64
-
name = "build_test",
65
65
-
srcs = [
66
66
-
"builder_test.go",
67
67
-
"ctags_test.go",
68
68
-
"e2e_test.go",
69
69
-
],
70
70
-
data = glob(["testdata/**"]) + ["//testdata:testdata"],
71
71
-
embed = [":build"],
72
72
-
deps = [
73
73
-
"//:zoekt",
74
74
-
"//ctags",
75
75
-
"//query",
76
76
-
"//shards",
77
77
-
"@com_github_google_go_cmp//cmp",
78
78
-
"@com_github_google_go_cmp//cmp/cmpopts",
79
79
-
"@com_github_grafana_regexp//:regexp",
80
80
-
],
81
81
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
2
-
3
3
-
go_library(
4
4
-
name = "cmd",
5
5
-
srcs = ["flags.go"],
6
6
-
importpath = "github.com/sourcegraph/zoekt/cmd",
7
7
-
visibility = ["//visibility:public"],
8
8
-
deps = [
9
9
-
"//:zoekt",
10
10
-
"//build",
11
11
-
],
12
12
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test")
2
2
-
3
3
-
go_library(
4
4
-
name = "zoekt-archive-index_lib",
5
5
-
srcs = [
6
6
-
"archive.go",
7
7
-
"flowrate.go",
8
8
-
"main.go",
9
9
-
],
10
10
-
importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-archive-index",
11
11
-
visibility = ["//visibility:private"],
12
12
-
deps = [
13
13
-
"//:zoekt",
14
14
-
"//build",
15
15
-
"//cmd",
16
16
-
"@com_github_mxk_go_flowrate//flowrate",
17
17
-
"@org_uber_go_automaxprocs//maxprocs",
18
18
-
],
19
19
-
)
20
20
-
21
21
-
go_binary(
22
22
-
name = "zoekt-archive-index",
23
23
-
embed = [":zoekt-archive-index_lib"],
24
24
-
pure = "on",
25
25
-
static = "on",
26
26
-
visibility = ["//visibility:public"],
27
27
-
)
28
28
-
29
29
-
go_test(
30
30
-
name = "zoekt-archive-index_test",
31
31
-
srcs = ["e2e_test.go"],
32
32
-
embed = [":zoekt-archive-index_lib"],
33
33
-
deps = [
34
34
-
"//:zoekt",
35
35
-
"//build",
36
36
-
"//query",
37
37
-
"//shards",
38
38
-
],
39
39
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test")
2
2
-
3
3
-
go_library(
4
4
-
name = "zoekt-dynamic-indexserver_lib",
5
5
-
srcs = ["main.go"],
6
6
-
importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-dynamic-indexserver",
7
7
-
visibility = ["//visibility:private"],
8
8
-
deps = [
9
9
-
"@com_github_prometheus_client_golang//prometheus",
10
10
-
"@com_github_prometheus_client_golang//prometheus/collectors",
11
11
-
"@com_github_prometheus_client_golang//prometheus/promauto",
12
12
-
"@com_github_prometheus_client_golang//prometheus/promhttp",
13
13
-
],
14
14
-
)
15
15
-
16
16
-
go_binary(
17
17
-
name = "zoekt-dynamic-indexserver",
18
18
-
embed = [":zoekt-dynamic-indexserver_lib"],
19
19
-
visibility = ["//visibility:public"],
20
20
-
)
21
21
-
22
22
-
go_test(
23
23
-
name = "zoekt-dynamic-indexserver_test",
24
24
-
srcs = ["main_test.go"],
25
25
-
embed = [":zoekt-dynamic-indexserver_lib"],
26
26
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
2
2
-
3
3
-
go_library(
4
4
-
name = "zoekt-git-clone_lib",
5
5
-
srcs = ["main.go"],
6
6
-
importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-git-clone",
7
7
-
visibility = ["//visibility:private"],
8
8
-
deps = ["//gitindex"],
9
9
-
)
10
10
-
11
11
-
go_binary(
12
12
-
name = "zoekt-git-clone",
13
13
-
embed = [":zoekt-git-clone_lib"],
14
14
-
visibility = ["//visibility:public"],
15
15
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
2
2
-
3
3
-
go_library(
4
4
-
name = "zoekt-git-index_lib",
5
5
-
srcs = ["main.go"],
6
6
-
importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-git-index",
7
7
-
visibility = ["//visibility:private"],
8
8
-
deps = [
9
9
-
"//cmd",
10
10
-
"//ctags",
11
11
-
"//gitindex",
12
12
-
"@org_uber_go_automaxprocs//maxprocs",
13
13
-
],
14
14
-
)
15
15
-
16
16
-
go_binary(
17
17
-
name = "zoekt-git-index",
18
18
-
embed = [":zoekt-git-index_lib"],
19
19
-
pure = "on",
20
20
-
static = "on",
21
21
-
visibility = ["//visibility:public"],
22
22
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
2
2
-
3
3
-
go_library(
4
4
-
name = "zoekt-index_lib",
5
5
-
srcs = ["main.go"],
6
6
-
importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-index",
7
7
-
visibility = ["//visibility:private"],
8
8
-
deps = [
9
9
-
"//:zoekt",
10
10
-
"//build",
11
11
-
"//cmd",
12
12
-
"@org_uber_go_automaxprocs//maxprocs",
13
13
-
],
14
14
-
)
15
15
-
16
16
-
go_binary(
17
17
-
name = "zoekt-index",
18
18
-
embed = [":zoekt-index_lib"],
19
19
-
visibility = ["//visibility:public"],
20
20
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
2
2
-
3
3
-
go_library(
4
4
-
name = "zoekt-indexserver_lib",
5
5
-
srcs = [
6
6
-
"config.go",
7
7
-
"main.go",
8
8
-
],
9
9
-
importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-indexserver",
10
10
-
visibility = ["//visibility:private"],
11
11
-
deps = [
12
12
-
"//:zoekt",
13
13
-
"//gitindex",
14
14
-
"@com_github_fsnotify_fsnotify//:fsnotify",
15
15
-
],
16
16
-
)
17
17
-
18
18
-
go_binary(
19
19
-
name = "zoekt-indexserver",
20
20
-
embed = [":zoekt-indexserver_lib"],
21
21
-
visibility = ["//visibility:public"],
22
22
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test")
2
2
-
3
3
-
go_library(
4
4
-
name = "zoekt-merge-index_lib",
5
5
-
srcs = ["main.go"],
6
6
-
importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-merge-index",
7
7
-
visibility = ["//visibility:private"],
8
8
-
deps = ["//:zoekt"],
9
9
-
)
10
10
-
11
11
-
go_binary(
12
12
-
name = "zoekt-merge-index",
13
13
-
embed = [":zoekt-merge-index_lib"],
14
14
-
visibility = ["//visibility:public"],
15
15
-
)
16
16
-
17
17
-
go_test(
18
18
-
name = "zoekt-merge-index_test",
19
19
-
srcs = ["main_test.go"],
20
20
-
data = ["//testdata"],
21
21
-
embed = [":zoekt-merge-index_lib"],
22
22
-
deps = [
23
23
-
"//:zoekt",
24
24
-
"//query",
25
25
-
"//shards",
26
26
-
],
27
27
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
2
2
-
3
3
-
go_library(
4
4
-
name = "zoekt-mirror-bitbucket-server_lib",
5
5
-
srcs = ["main.go"],
6
6
-
importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-mirror-bitbucket-server",
7
7
-
visibility = ["//visibility:private"],
8
8
-
deps = [
9
9
-
"//gitindex",
10
10
-
"@com_github_gfleury_go_bitbucket_v1//:go-bitbucket-v1",
11
11
-
],
12
12
-
)
13
13
-
14
14
-
go_binary(
15
15
-
name = "zoekt-mirror-bitbucket-server",
16
16
-
embed = [":zoekt-mirror-bitbucket-server_lib"],
17
17
-
visibility = ["//visibility:public"],
18
18
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
2
2
-
3
3
-
go_library(
4
4
-
name = "zoekt-mirror-gerrit_lib",
5
5
-
srcs = ["main.go"],
6
6
-
importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-mirror-gerrit",
7
7
-
visibility = ["//visibility:private"],
8
8
-
deps = [
9
9
-
"//gitindex",
10
10
-
"@com_github_andygrunwald_go_gerrit//:go-gerrit",
11
11
-
],
12
12
-
)
13
13
-
14
14
-
go_binary(
15
15
-
name = "zoekt-mirror-gerrit",
16
16
-
embed = [":zoekt-mirror-gerrit_lib"],
17
17
-
visibility = ["//visibility:public"],
18
18
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
2
2
-
3
3
-
go_library(
4
4
-
name = "zoekt-mirror-github_lib",
5
5
-
srcs = ["main.go"],
6
6
-
importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-mirror-github",
7
7
-
visibility = ["//visibility:private"],
8
8
-
deps = [
9
9
-
"//gitindex",
10
10
-
"@com_github_google_go_github_v27//github",
11
11
-
"@org_golang_x_oauth2//:oauth2",
12
12
-
],
13
13
-
)
14
14
-
15
15
-
go_binary(
16
16
-
name = "zoekt-mirror-github",
17
17
-
embed = [":zoekt-mirror-github_lib"],
18
18
-
visibility = ["//visibility:public"],
19
19
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
2
2
-
3
3
-
go_library(
4
4
-
name = "zoekt-mirror-gitiles_lib",
5
5
-
srcs = [
6
6
-
"cgit.go",
7
7
-
"gitiles.go",
8
8
-
"main.go",
9
9
-
],
10
10
-
importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-mirror-gitiles",
11
11
-
visibility = ["//visibility:private"],
12
12
-
deps = [
13
13
-
"//gitindex",
14
14
-
"@com_github_grafana_regexp//:regexp",
15
15
-
],
16
16
-
)
17
17
-
18
18
-
go_binary(
19
19
-
name = "zoekt-mirror-gitiles",
20
20
-
embed = [":zoekt-mirror-gitiles_lib"],
21
21
-
visibility = ["//visibility:public"],
22
22
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
2
2
-
3
3
-
go_library(
4
4
-
name = "zoekt-mirror-gitlab_lib",
5
5
-
srcs = ["main.go"],
6
6
-
importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-mirror-gitlab",
7
7
-
visibility = ["//visibility:private"],
8
8
-
deps = [
9
9
-
"//gitindex",
10
10
-
"@com_github_xanzy_go_gitlab//:go-gitlab",
11
11
-
],
12
12
-
)
13
13
-
14
14
-
go_binary(
15
15
-
name = "zoekt-mirror-gitlab",
16
16
-
embed = [":zoekt-mirror-gitlab_lib"],
17
17
-
visibility = ["//visibility:public"],
18
18
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
2
2
-
3
3
-
go_library(
4
4
-
name = "zoekt-repo-index_lib",
5
5
-
srcs = ["main.go"],
6
6
-
importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-repo-index",
7
7
-
visibility = ["//visibility:private"],
8
8
-
deps = [
9
9
-
"//:zoekt",
10
10
-
"//build",
11
11
-
"//gitindex",
12
12
-
"@com_github_go_git_go_git_v5//:go-git",
13
13
-
"@com_github_go_git_go_git_v5//plumbing",
14
14
-
"@com_github_google_slothfs//manifest",
15
15
-
"@org_uber_go_automaxprocs//maxprocs",
16
16
-
],
17
17
-
)
18
18
-
19
19
-
go_binary(
20
20
-
name = "zoekt-repo-index",
21
21
-
embed = [":zoekt-repo-index_lib"],
22
22
-
visibility = ["//visibility:public"],
23
23
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test")
2
2
-
3
3
-
go_library(
4
4
-
name = "zoekt-sourcegraph-indexserver_lib",
5
5
-
srcs = [
6
6
-
"backoff.go",
7
7
-
"cleanup.go",
8
8
-
"debug.go",
9
9
-
"index.go",
10
10
-
"index_mutex.go",
11
11
-
"main.go",
12
12
-
"merge.go",
13
13
-
"meta.go",
14
14
-
"meta_unix.go",
15
15
-
"meta_windows.go",
16
16
-
"owner.go",
17
17
-
"queue.go",
18
18
-
"sg.go",
19
19
-
],
20
20
-
embedsrcs = ["default_grpc_service_configuration.json"],
21
21
-
importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-sourcegraph-indexserver",
22
22
-
visibility = ["//visibility:private"],
23
23
-
deps = [
24
24
-
"//:zoekt",
25
25
-
"//build",
26
26
-
"//cmd/zoekt-sourcegraph-indexserver/protos/sourcegraph/zoekt/configuration/v1:configuration",
27
27
-
"//ctags",
28
28
-
"//debugserver",
29
29
-
"//internal/profiler",
30
30
-
"@com_github_go_git_go_git_v5//:go-git",
31
31
-
"@com_github_grafana_regexp//:regexp",
32
32
-
"@com_github_hashicorp_go_retryablehttp//:go-retryablehttp",
33
33
-
"@com_github_keegancsmith_tmpfriend//:tmpfriend",
34
34
-
"@com_github_peterbourgon_ff_v3//ffcli",
35
35
-
"@com_github_prometheus_client_golang//prometheus",
36
36
-
"@com_github_prometheus_client_golang//prometheus/promauto",
37
37
-
"@com_github_sourcegraph_log//:log",
38
38
-
"@com_github_sourcegraph_mountinfo//:mountinfo",
39
39
-
"@in_gopkg_natefinch_lumberjack_v2//:lumberjack_v2",
40
40
-
"@org_golang_google_grpc//:go_default_library",
41
41
-
"@org_golang_google_grpc//credentials/insecure",
42
42
-
"@org_golang_google_grpc//metadata",
43
43
-
"@org_golang_x_net//trace",
44
44
-
"@org_golang_x_sys//unix",
45
45
-
"@org_uber_go_atomic//:atomic",
46
46
-
"@org_uber_go_automaxprocs//maxprocs",
47
47
-
],
48
48
-
)
49
49
-
50
50
-
go_binary(
51
51
-
name = "zoekt-sourcegraph-indexserver",
52
52
-
embed = [":zoekt-sourcegraph-indexserver_lib"],
53
53
-
pure = "on",
54
54
-
static = "on",
55
55
-
visibility = ["//visibility:public"],
56
56
-
)
57
57
-
58
58
-
go_test(
59
59
-
name = "zoekt-sourcegraph-indexserver_test",
60
60
-
srcs = [
61
61
-
"backoff_test.go",
62
62
-
"cleanup_test.go",
63
63
-
"index_test.go",
64
64
-
"main_test.go",
65
65
-
"merge_test.go",
66
66
-
"meta_test.go",
67
67
-
"owner_test.go",
68
68
-
"queue_test.go",
69
69
-
"sg_test.go",
70
70
-
],
71
71
-
data = glob(["json_schemas/**"]) + ["//testdata:testdata"],
72
72
-
embed = [":zoekt-sourcegraph-indexserver_lib"],
73
73
-
deps = [
74
74
-
"//:zoekt",
75
75
-
"//build",
76
76
-
"//cmd/zoekt-sourcegraph-indexserver/protos/sourcegraph/zoekt/configuration/v1:configuration",
77
77
-
"@com_github_google_go_cmp//cmp",
78
78
-
"@com_github_google_go_cmp//cmp/cmpopts",
79
79
-
"@com_github_sourcegraph_log//:log",
80
80
-
"@com_github_sourcegraph_log//logtest",
81
81
-
"@com_github_xeipuuv_gojsonschema//:gojsonschema",
82
82
-
"@org_golang_google_grpc//:go_default_library",
83
83
-
"@org_golang_google_protobuf//testing/protocmp",
84
84
-
"@org_golang_google_protobuf//types/known/timestamppb",
85
85
-
],
86
86
-
)
···
1
1
-
load("@rules_proto//proto:defs.bzl", "proto_library")
2
2
-
load("@io_bazel_rules_go//go:def.bzl", "go_library")
3
3
-
load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
4
4
-
5
5
-
proto_library(
6
6
-
name = "v1_proto",
7
7
-
srcs = ["configuration.proto"],
8
8
-
visibility = ["//visibility:public"],
9
9
-
deps = ["@com_google_protobuf//:timestamp_proto"],
10
10
-
)
11
11
-
12
12
-
go_proto_library(
13
13
-
name = "v1_go_proto",
14
14
-
compilers = ["@io_bazel_rules_go//proto:go_grpc"],
15
15
-
importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-sourcegraph-indexserver/protos/sourcegraph/zoekt/configuration/v1",
16
16
-
proto = ":v1_proto",
17
17
-
visibility = ["//visibility:public"],
18
18
-
)
19
19
-
20
20
-
go_library(
21
21
-
name = "configuration",
22
22
-
embed = [":v1_go_proto"],
23
23
-
importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-sourcegraph-indexserver/protos/sourcegraph/zoekt/configuration/v1",
24
24
-
visibility = ["//visibility:public"],
25
25
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
2
2
-
3
3
-
go_library(
4
4
-
name = "zoekt-test_lib",
5
5
-
srcs = ["main.go"],
6
6
-
importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-test",
7
7
-
visibility = ["//visibility:private"],
8
8
-
deps = [
9
9
-
"//:zoekt",
10
10
-
"//build",
11
11
-
"//query",
12
12
-
"//shards",
13
13
-
],
14
14
-
)
15
15
-
16
16
-
go_binary(
17
17
-
name = "zoekt-test",
18
18
-
embed = [":zoekt-test_lib"],
19
19
-
visibility = ["//visibility:public"],
20
20
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
2
2
-
3
3
-
go_library(
4
4
-
name = "zoekt-webserver_lib",
5
5
-
srcs = [
6
6
-
"main.go",
7
7
-
"main_linux.go",
8
8
-
"main_unix.go",
9
9
-
"main_unsupported.go",
10
10
-
"main_windows.go",
11
11
-
],
12
12
-
importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-webserver",
13
13
-
visibility = ["//visibility:private"],
14
14
-
deps = [
15
15
-
"//:zoekt",
16
16
-
"//build",
17
17
-
"//debugserver",
18
18
-
"//grpc",
19
19
-
"//grpc/v1:grpc",
20
20
-
"//internal/profiler",
21
21
-
"//internal/tracer",
22
22
-
"//query",
23
23
-
"//shards",
24
24
-
"//stream",
25
25
-
"//trace",
26
26
-
"//web",
27
27
-
"@com_github_opentracing_opentracing_go//:opentracing-go",
28
28
-
"@com_github_prometheus_client_golang//prometheus",
29
29
-
"@com_github_prometheus_client_golang//prometheus/promauto",
30
30
-
"@com_github_shirou_gopsutil_v3//disk",
31
31
-
"@com_github_sourcegraph_log//:log",
32
32
-
"@com_github_sourcegraph_mountinfo//:mountinfo",
33
33
-
"@com_github_uber_jaeger_client_go//:jaeger-client-go",
34
34
-
"@io_opentelemetry_go_contrib_instrumentation_google_golang_org_grpc_otelgrpc//:otelgrpc",
35
35
-
"@io_opentelemetry_go_otel_trace//:trace",
36
36
-
"@org_golang_google_grpc//:go_default_library",
37
37
-
"@org_golang_x_net//http2",
38
38
-
"@org_golang_x_net//http2/h2c",
39
39
-
"@org_uber_go_automaxprocs//maxprocs",
40
40
-
] + select({
41
41
-
"@io_bazel_rules_go//go/platform:aix": [
42
42
-
"@org_golang_x_sys//unix",
43
43
-
],
44
44
-
"@io_bazel_rules_go//go/platform:android": [
45
45
-
"@com_github_prometheus_procfs//:procfs",
46
46
-
"@org_golang_x_sys//unix",
47
47
-
],
48
48
-
"@io_bazel_rules_go//go/platform:darwin": [
49
49
-
"@org_golang_x_sys//unix",
50
50
-
],
51
51
-
"@io_bazel_rules_go//go/platform:dragonfly": [
52
52
-
"@org_golang_x_sys//unix",
53
53
-
],
54
54
-
"@io_bazel_rules_go//go/platform:freebsd": [
55
55
-
"@org_golang_x_sys//unix",
56
56
-
],
57
57
-
"@io_bazel_rules_go//go/platform:illumos": [
58
58
-
"@org_golang_x_sys//unix",
59
59
-
],
60
60
-
"@io_bazel_rules_go//go/platform:ios": [
61
61
-
"@org_golang_x_sys//unix",
62
62
-
],
63
63
-
"@io_bazel_rules_go//go/platform:js": [
64
64
-
"@org_golang_x_sys//unix",
65
65
-
],
66
66
-
"@io_bazel_rules_go//go/platform:linux": [
67
67
-
"@com_github_prometheus_procfs//:procfs",
68
68
-
"@org_golang_x_sys//unix",
69
69
-
],
70
70
-
"@io_bazel_rules_go//go/platform:netbsd": [
71
71
-
"@org_golang_x_sys//unix",
72
72
-
],
73
73
-
"@io_bazel_rules_go//go/platform:openbsd": [
74
74
-
"@org_golang_x_sys//unix",
75
75
-
],
76
76
-
"@io_bazel_rules_go//go/platform:plan9": [
77
77
-
"@org_golang_x_sys//unix",
78
78
-
],
79
79
-
"@io_bazel_rules_go//go/platform:solaris": [
80
80
-
"@org_golang_x_sys//unix",
81
81
-
],
82
82
-
"@io_bazel_rules_go//go/platform:windows": [
83
83
-
"@org_golang_x_sys//windows",
84
84
-
],
85
85
-
"//conditions:default": [],
86
86
-
}),
87
87
-
)
88
88
-
89
89
-
go_binary(
90
90
-
name = "zoekt-webserver",
91
91
-
embed = [":zoekt-webserver_lib"],
92
92
-
pure = "on",
93
93
-
static = "on",
94
94
-
visibility = ["//visibility:public"],
95
95
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
2
2
-
3
3
-
go_library(
4
4
-
name = "zoekt_lib",
5
5
-
srcs = ["main.go"],
6
6
-
importpath = "github.com/sourcegraph/zoekt/cmd/zoekt",
7
7
-
visibility = ["//visibility:private"],
8
8
-
deps = [
9
9
-
"//:zoekt",
10
10
-
"//query",
11
11
-
"//shards",
12
12
-
"@com_github_felixge_fgprof//:fgprof",
13
13
-
],
14
14
-
)
15
15
-
16
16
-
go_binary(
17
17
-
name = "zoekt",
18
18
-
embed = [":zoekt_lib"],
19
19
-
visibility = ["//visibility:public"],
20
20
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
2
-
3
3
-
go_library(
4
4
-
name = "ctags",
5
5
-
srcs = [
6
6
-
"json.go",
7
7
-
"parser_map.go",
8
8
-
],
9
9
-
importpath = "github.com/sourcegraph/zoekt/ctags",
10
10
-
visibility = ["//visibility:public"],
11
11
-
deps = ["@com_github_sourcegraph_go_ctags//:go-ctags"],
12
12
-
)
13
13
-
14
14
-
go_test(
15
15
-
name = "ctags_test",
16
16
-
srcs = ["json_test.go"],
17
17
-
embed = [":ctags"],
18
18
-
deps = [
19
19
-
"@com_github_google_go_cmp//cmp",
20
20
-
"@com_github_google_go_cmp//cmp/cmpopts",
21
21
-
],
22
22
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
2
-
3
3
-
go_library(
4
4
-
name = "debugserver",
5
5
-
srcs = [
6
6
-
"debug.go",
7
7
-
"expvar.go",
8
8
-
],
9
9
-
importpath = "github.com/sourcegraph/zoekt/debugserver",
10
10
-
visibility = ["//visibility:public"],
11
11
-
deps = [
12
12
-
"//:zoekt",
13
13
-
"@com_github_prometheus_client_golang//prometheus",
14
14
-
"@com_github_prometheus_client_golang//prometheus/promauto",
15
15
-
"@com_github_prometheus_client_golang//prometheus/promhttp",
16
16
-
"@org_golang_x_net//trace",
17
17
-
],
18
18
-
)
···
1
1
-
"Bazel go dependencies"
2
2
-
3
3
-
load("@bazel_gazelle//:deps.bzl", "go_repository")
4
4
-
5
5
-
def go_dependencies():
6
6
-
"""The go dependencies in this macro are auto-updated by gazelle
7
7
-
8
8
-
To update run,
9
9
-
10
10
-
bazel run //:gazelle-update-repos
11
11
-
"""
12
12
-
pass
13
13
-
go_repository(
14
14
-
name = "cc_mvdan_gofumpt",
15
15
-
build_file_proto_mode = "disable_global",
16
16
-
importpath = "mvdan.cc/gofumpt",
17
17
-
sum = "h1:JVf4NN1mIpHogBj7ABpgOyZc65/UUOkKQFkoURsz4MM=",
18
18
-
version = "v0.4.0",
19
19
-
)
20
20
-
go_repository(
21
21
-
name = "co_honnef_go_tools",
22
22
-
build_file_proto_mode = "disable_global",
23
23
-
importpath = "honnef.co/go/tools",
24
24
-
sum = "h1:/hemPrYIhOhy8zYrNj+069zDB68us2sMGsfkFJO0iZs=",
25
25
-
version = "v0.0.0-20190523083050-ea95bdfd59fc",
26
26
-
)
27
27
-
go_repository(
28
28
-
name = "com_github_acomagu_bufpipe",
29
29
-
build_file_proto_mode = "disable_global",
30
30
-
importpath = "github.com/acomagu/bufpipe",
31
31
-
sum = "h1:e3H4WUzM3npvo5uv95QuJM3cQspFNtFBzvJ2oNjKIDQ=",
32
32
-
version = "v1.0.4",
33
33
-
)
34
34
-
35
35
-
go_repository(
36
36
-
name = "com_github_ajstarks_svgo",
37
37
-
build_file_proto_mode = "disable_global",
38
38
-
importpath = "github.com/ajstarks/svgo",
39
39
-
sum = "h1:wVe6/Ea46ZMeNkQjjBW6xcqyQA/j5e0D6GytH95g0gQ=",
40
40
-
version = "v0.0.0-20180226025133-644b8db467af",
41
41
-
)
42
42
-
go_repository(
43
43
-
name = "com_github_alecthomas_kingpin_v2",
44
44
-
build_file_proto_mode = "disable_global",
45
45
-
importpath = "github.com/alecthomas/kingpin/v2",
46
46
-
sum = "h1:H0aULhgmSzN8xQ3nX1uxtdlTHYoPLu5AhHxWrKI6ocU=",
47
47
-
version = "v2.3.2",
48
48
-
)
49
49
-
50
50
-
go_repository(
51
51
-
name = "com_github_alecthomas_units",
52
52
-
build_file_proto_mode = "disable_global",
53
53
-
importpath = "github.com/alecthomas/units",
54
54
-
sum = "h1:s6gZFSlWYmbqAuRjVTiNNhvNRfY2Wxp9nhfyel4rklc=",
55
55
-
version = "v0.0.0-20211218093645-b94a6e3cc137",
56
56
-
)
57
57
-
58
58
-
go_repository(
59
59
-
name = "com_github_andybalholm_brotli",
60
60
-
build_file_proto_mode = "disable_global",
61
61
-
importpath = "github.com/andybalholm/brotli",
62
62
-
sum = "h1:8uQZIdzKmjc/iuPu7O2ioW48L81FgatrcpfFmiq/cCs=",
63
63
-
version = "v1.0.5",
64
64
-
)
65
65
-
go_repository(
66
66
-
name = "com_github_andygrunwald_go_gerrit",
67
67
-
build_file_proto_mode = "disable_global",
68
68
-
importpath = "github.com/andygrunwald/go-gerrit",
69
69
-
sum = "h1:q9HI3vudtbNNvaZl+l0oM7cQ07OES2x7ysiVwZpk89E=",
70
70
-
version = "v0.0.0-20230628115649-c44fe2fbf2ca",
71
71
-
)
72
72
-
go_repository(
73
73
-
name = "com_github_anmitsu_go_shlex",
74
74
-
build_file_proto_mode = "disable_global",
75
75
-
importpath = "github.com/anmitsu/go-shlex",
76
76
-
sum = "h1:9AeTilPcZAjCFIImctFaOjnTIavg87rW78vTPkQqLI8=",
77
77
-
version = "v0.0.0-20200514113438-38f4b401e2be",
78
78
-
)
79
79
-
go_repository(
80
80
-
name = "com_github_antihax_optional",
81
81
-
build_file_proto_mode = "disable_global",
82
82
-
importpath = "github.com/antihax/optional",
83
83
-
sum = "h1:xK2lYat7ZLaVVcIuj82J8kIro4V6kDe0AUDFboUCwcg=",
84
84
-
version = "v1.0.0",
85
85
-
)
86
86
-
87
87
-
go_repository(
88
88
-
name = "com_github_armon_go_socks5",
89
89
-
build_file_proto_mode = "disable_global",
90
90
-
importpath = "github.com/armon/go-socks5",
91
91
-
sum = "h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio=",
92
92
-
version = "v0.0.0-20160902184237-e75332964ef5",
93
93
-
)
94
94
-
go_repository(
95
95
-
name = "com_github_aymerick_douceur",
96
96
-
build_file_proto_mode = "disable_global",
97
97
-
importpath = "github.com/aymerick/douceur",
98
98
-
sum = "h1:Mv+mAeH1Q+n9Fr+oyamOlAkUNPWPlA8PPGR0QAaYuPk=",
99
99
-
version = "v0.2.0",
100
100
-
)
101
101
-
102
102
-
go_repository(
103
103
-
name = "com_github_benbjohnson_clock",
104
104
-
build_file_proto_mode = "disable_global",
105
105
-
importpath = "github.com/benbjohnson/clock",
106
106
-
sum = "h1:ip6w0uFQkncKQ979AypyG0ER7mqUSBdKLOgAle/AT8A=",
107
107
-
version = "v1.3.0",
108
108
-
)
109
109
-
go_repository(
110
110
-
name = "com_github_beorn7_perks",
111
111
-
build_file_proto_mode = "disable_global",
112
112
-
importpath = "github.com/beorn7/perks",
113
113
-
sum = "h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=",
114
114
-
version = "v1.0.1",
115
115
-
)
116
116
-
go_repository(
117
117
-
name = "com_github_bits_and_blooms_bitset",
118
118
-
build_file_proto_mode = "disable_global",
119
119
-
importpath = "github.com/bits-and-blooms/bitset",
120
120
-
sum = "h1:FD+XqgOZDUxxZ8hzoBFuV9+cGWY9CslN6d5MS5JVb4c=",
121
121
-
version = "v1.8.0",
122
122
-
)
123
123
-
go_repository(
124
124
-
name = "com_github_bmatcuk_doublestar",
125
125
-
build_file_proto_mode = "disable_global",
126
126
-
importpath = "github.com/bmatcuk/doublestar",
127
127
-
sum = "h1:gPypJ5xD31uhX6Tf54sDPUOBXTqKH4c9aPY66CyQrS0=",
128
128
-
version = "v1.3.4",
129
129
-
)
130
130
-
go_repository(
131
131
-
name = "com_github_burntsushi_toml",
132
132
-
build_file_proto_mode = "disable_global",
133
133
-
importpath = "github.com/BurntSushi/toml",
134
134
-
sum = "h1:9F2/+DoOYIOksmaJFPw1tGFy1eDnIJXg+UHjuD8lTak=",
135
135
-
version = "v1.2.1",
136
136
-
)
137
137
-
go_repository(
138
138
-
name = "com_github_burntsushi_xgb",
139
139
-
build_file_proto_mode = "disable_global",
140
140
-
importpath = "github.com/BurntSushi/xgb",
141
141
-
sum = "h1:1BDTz0u9nC3//pOCMdNH+CiXJVYJh5UQNCOBG7jbELc=",
142
142
-
version = "v0.0.0-20160522181843-27f122750802",
143
143
-
)
144
144
-
go_repository(
145
145
-
name = "com_github_bwesterb_go_ristretto",
146
146
-
build_file_proto_mode = "disable_global",
147
147
-
importpath = "github.com/bwesterb/go-ristretto",
148
148
-
sum = "h1:1w53tCkGhCQ5djbat3+MH0BAQ5Kfgbt56UZQ/JMzngw=",
149
149
-
version = "v1.2.3",
150
150
-
)
151
151
-
go_repository(
152
152
-
name = "com_github_cenkalti_backoff_v4",
153
153
-
build_file_proto_mode = "disable_global",
154
154
-
importpath = "github.com/cenkalti/backoff/v4",
155
155
-
sum = "h1:y4OZtCnogmCPw98Zjyt5a6+QwPLGkiQsYW5oUqylYbM=",
156
156
-
version = "v4.2.1",
157
157
-
)
158
158
-
go_repository(
159
159
-
name = "com_github_census_instrumentation_opencensus_proto",
160
160
-
build_file_proto_mode = "disable_global",
161
161
-
importpath = "github.com/census-instrumentation/opencensus-proto",
162
162
-
sum = "h1:iKLQ0xPNFxR/2hzXZMrBo8f1j86j5WHzznCCQxV/b8g=",
163
163
-
version = "v0.4.1",
164
164
-
)
165
165
-
166
166
-
go_repository(
167
167
-
name = "com_github_cespare_xxhash_v2",
168
168
-
build_file_proto_mode = "disable_global",
169
169
-
importpath = "github.com/cespare/xxhash/v2",
170
170
-
sum = "h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44=",
171
171
-
version = "v2.2.0",
172
172
-
)
173
173
-
go_repository(
174
174
-
name = "com_github_chzyer_logex",
175
175
-
build_file_proto_mode = "disable_global",
176
176
-
importpath = "github.com/chzyer/logex",
177
177
-
sum = "h1:Swpa1K6QvQznwJRcfTfQJmTE72DqScAa40E+fbHEXEE=",
178
178
-
version = "v1.1.10",
179
179
-
)
180
180
-
181
181
-
go_repository(
182
182
-
name = "com_github_chzyer_readline",
183
183
-
build_file_proto_mode = "disable_global",
184
184
-
importpath = "github.com/chzyer/readline",
185
185
-
sum = "h1:upd/6fQk4src78LMRzh5vItIt361/o4uq553V8B5sGI=",
186
186
-
version = "v1.5.1",
187
187
-
)
188
188
-
go_repository(
189
189
-
name = "com_github_chzyer_test",
190
190
-
build_file_proto_mode = "disable_global",
191
191
-
importpath = "github.com/chzyer/test",
192
192
-
sum = "h1:q763qf9huN11kDQavWsoZXJNW3xEE4JJyHa5Q25/sd8=",
193
193
-
version = "v0.0.0-20180213035817-a1ea475d72b1",
194
194
-
)
195
195
-
196
196
-
go_repository(
197
197
-
name = "com_github_client9_misspell",
198
198
-
build_file_proto_mode = "disable_global",
199
199
-
importpath = "github.com/client9/misspell",
200
200
-
sum = "h1:ta993UF76GwbvJcIo3Y68y/M3WxlpEHPWIGDkJYwzJI=",
201
201
-
version = "v0.3.4",
202
202
-
)
203
203
-
go_repository(
204
204
-
name = "com_github_cloudflare_circl",
205
205
-
build_file_proto_mode = "disable_global",
206
206
-
importpath = "github.com/cloudflare/circl",
207
207
-
sum = "h1:fE/Qz0QdIGqeWfnwq0RE0R7MI51s0M2E4Ga9kq5AEMs=",
208
208
-
version = "v1.3.3",
209
209
-
)
210
210
-
go_repository(
211
211
-
name = "com_github_cloudykit_fastprinter",
212
212
-
build_file_proto_mode = "disable_global",
213
213
-
importpath = "github.com/CloudyKit/fastprinter",
214
214
-
sum = "h1:sR+/8Yb4slttB4vD+b9btVEnWgL3Q00OBTzVT8B9C0c=",
215
215
-
version = "v0.0.0-20200109182630-33d98a066a53",
216
216
-
)
217
217
-
218
218
-
go_repository(
219
219
-
name = "com_github_cloudykit_jet_v6",
220
220
-
build_file_proto_mode = "disable_global",
221
221
-
importpath = "github.com/CloudyKit/jet/v6",
222
222
-
sum = "h1:EpcZ6SR9n28BUGtNJSvlBqf90IpjeFr36Tizxhn/oME=",
223
223
-
version = "v6.2.0",
224
224
-
)
225
225
-
go_repository(
226
226
-
name = "com_github_cncf_udpa_go",
227
227
-
build_file_proto_mode = "disable_global",
228
228
-
importpath = "github.com/cncf/udpa/go",
229
229
-
sum = "h1:QQ3GSy+MqSHxm/d8nCtnAiZdYFd45cYZPs8vOOIYKfk=",
230
230
-
version = "v0.0.0-20220112060539-c52dc94e7fbe",
231
231
-
)
232
232
-
go_repository(
233
233
-
name = "com_github_cncf_xds_go",
234
234
-
build_file_proto_mode = "disable_global",
235
235
-
importpath = "github.com/cncf/xds/go",
236
236
-
sum = "h1:/inchEIKaYC1Akx+H+gqO04wryn5h75LSazbRlnya1k=",
237
237
-
version = "v0.0.0-20230607035331-e9ce68804cb4",
238
238
-
)
239
239
-
go_repository(
240
240
-
name = "com_github_cockroachdb_datadriven",
241
241
-
build_file_proto_mode = "disable_global",
242
242
-
importpath = "github.com/cockroachdb/datadriven",
243
243
-
sum = "h1:H9MtNqVoVhvd9nCBwOyDjUEdZCREqbIdCJD93PBm/jA=",
244
244
-
version = "v1.0.2",
245
245
-
)
246
246
-
go_repository(
247
247
-
name = "com_github_cockroachdb_errors",
248
248
-
build_file_proto_mode = "disable_global",
249
249
-
importpath = "github.com/cockroachdb/errors",
250
250
-
sum = "h1:lfxS8zZz1+OjtV4MtNWgboi/W5tyLEB6VQZBXN+0VUU=",
251
251
-
version = "v1.10.0",
252
252
-
)
253
253
-
go_repository(
254
254
-
name = "com_github_cockroachdb_logtags",
255
255
-
build_file_proto_mode = "disable_global",
256
256
-
importpath = "github.com/cockroachdb/logtags",
257
257
-
sum = "h1:r6VH0faHjZeQy818SGhaone5OnYfxFR/+AzdY3sf5aE=",
258
258
-
version = "v0.0.0-20230118201751-21c54148d20b",
259
259
-
)
260
260
-
go_repository(
261
261
-
name = "com_github_cockroachdb_redact",
262
262
-
build_file_proto_mode = "disable_global",
263
263
-
importpath = "github.com/cockroachdb/redact",
264
264
-
sum = "h1:u1PMllDkdFfPWaNGMyLD1+so+aq3uUItthCFqzwPJ30=",
265
265
-
version = "v1.1.5",
266
266
-
)
267
267
-
go_repository(
268
268
-
name = "com_github_codegangsta_inject",
269
269
-
build_file_proto_mode = "disable_global",
270
270
-
importpath = "github.com/codegangsta/inject",
271
271
-
sum = "h1:sDMmm+q/3+BukdIpxwO365v/Rbspp2Nt5XntgQRXq8Q=",
272
272
-
version = "v0.0.0-20150114235600-33e0aa1cb7c0",
273
273
-
)
274
274
-
275
275
-
go_repository(
276
276
-
name = "com_github_creack_pty",
277
277
-
build_file_proto_mode = "disable_global",
278
278
-
importpath = "github.com/creack/pty",
279
279
-
sum = "h1:uDmaGzcdjhF4i/plgjmEsriH11Y0o7RKapEf/LDaM3w=",
280
280
-
version = "v1.1.9",
281
281
-
)
282
282
-
go_repository(
283
283
-
name = "com_github_davecgh_go_spew",
284
284
-
build_file_proto_mode = "disable_global",
285
285
-
importpath = "github.com/davecgh/go-spew",
286
286
-
sum = "h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=",
287
287
-
version = "v1.1.1",
288
288
-
)
289
289
-
290
290
-
go_repository(
291
291
-
name = "com_github_djherbis_buffer",
292
292
-
build_file_proto_mode = "disable_global",
293
293
-
importpath = "github.com/djherbis/buffer",
294
294
-
sum = "h1:PH5Dd2ss0C7CRRhQCZ2u7MssF+No9ide8Ye71nPHcrQ=",
295
295
-
version = "v1.2.0",
296
296
-
)
297
297
-
go_repository(
298
298
-
name = "com_github_djherbis_nio_v3",
299
299
-
build_file_proto_mode = "disable_global",
300
300
-
importpath = "github.com/djherbis/nio/v3",
301
301
-
sum = "h1:6wxhnuppteMa6RHA4L81Dq7ThkZH8SwnDzXDYy95vB4=",
302
302
-
version = "v3.0.1",
303
303
-
)
304
304
-
305
305
-
go_repository(
306
306
-
name = "com_github_edsrzf_mmap_go",
307
307
-
build_file_proto_mode = "disable_global",
308
308
-
importpath = "github.com/edsrzf/mmap-go",
309
309
-
sum = "h1:6EUwBLQ/Mcr1EYLE4Tn1VdW1A4ckqCQWZBw8Hr0kjpQ=",
310
310
-
version = "v1.1.0",
311
311
-
)
312
312
-
go_repository(
313
313
-
name = "com_github_eknkc_amber",
314
314
-
build_file_proto_mode = "disable_global",
315
315
-
importpath = "github.com/eknkc/amber",
316
316
-
sum = "h1:clC1lXBpe2kTj2VHdaIu9ajZQe4kcEY9j0NsnDDBZ3o=",
317
317
-
version = "v0.0.0-20171010120322-cdade1c07385",
318
318
-
)
319
319
-
go_repository(
320
320
-
name = "com_github_elazarl_goproxy",
321
321
-
build_file_proto_mode = "disable_global",
322
322
-
importpath = "github.com/elazarl/goproxy",
323
323
-
sum = "h1:RIB4cRk+lBqKK3Oy0r2gRX4ui7tuhiZq2SuTtTCi0/0=",
324
324
-
version = "v0.0.0-20221015165544-a0805db90819",
325
325
-
)
326
326
-
327
327
-
go_repository(
328
328
-
name = "com_github_emirpasic_gods",
329
329
-
build_file_proto_mode = "disable_global",
330
330
-
importpath = "github.com/emirpasic/gods",
331
331
-
sum = "h1:FXtiHYKDGKCW2KzwZKx0iC0PQmdlorYgdFG9jPXJ1Bc=",
332
332
-
version = "v1.18.1",
333
333
-
)
334
334
-
go_repository(
335
335
-
name = "com_github_envoyproxy_go_control_plane",
336
336
-
build_file_proto_mode = "disable_global",
337
337
-
importpath = "github.com/envoyproxy/go-control-plane",
338
338
-
sum = "h1:7T++XKzy4xg7PKy+bM+Sa9/oe1OC88yz2hXQUISoXfA=",
339
339
-
version = "v0.11.1-0.20230524094728-9239064ad72f",
340
340
-
)
341
341
-
go_repository(
342
342
-
name = "com_github_envoyproxy_protoc_gen_validate",
343
343
-
build_file_proto_mode = "disable_global",
344
344
-
importpath = "github.com/envoyproxy/protoc-gen-validate",
345
345
-
sum = "h1:c0g45+xCJhdgFGw7a5QAfdS4byAbud7miNWJ1WwEVf8=",
346
346
-
version = "v0.10.1",
347
347
-
)
348
348
-
349
349
-
go_repository(
350
350
-
name = "com_github_fatih_color",
351
351
-
build_file_proto_mode = "disable_global",
352
352
-
importpath = "github.com/fatih/color",
353
353
-
sum = "h1:kOqh6YHBtK8aywxGerMG2Eq3H6Qgoqeo13Bk2Mv/nBs=",
354
354
-
version = "v1.15.0",
355
355
-
)
356
356
-
go_repository(
357
357
-
name = "com_github_fatih_structs",
358
358
-
build_file_proto_mode = "disable_global",
359
359
-
importpath = "github.com/fatih/structs",
360
360
-
sum = "h1:Q7juDM0QtcnhCpeyLGQKyg4TOIghuNXrkL32pHAUMxo=",
361
361
-
version = "v1.1.0",
362
362
-
)
363
363
-
go_repository(
364
364
-
name = "com_github_felixge_fgprof",
365
365
-
build_file_proto_mode = "disable_global",
366
366
-
importpath = "github.com/felixge/fgprof",
367
367
-
sum = "h1:VvyZxILNuCiUCSXtPtYmmtGvb65nqXh2QFWc0Wpf2/g=",
368
368
-
version = "v0.9.3",
369
369
-
)
370
370
-
371
371
-
go_repository(
372
372
-
name = "com_github_flosch_pongo2_v4",
373
373
-
build_file_proto_mode = "disable_global",
374
374
-
importpath = "github.com/flosch/pongo2/v4",
375
375
-
sum = "h1:gv+5Pe3vaSVmiJvh/BZa82b7/00YUGm0PIyVVLop0Hw=",
376
376
-
version = "v4.0.2",
377
377
-
)
378
378
-
go_repository(
379
379
-
name = "com_github_fogleman_gg",
380
380
-
build_file_proto_mode = "disable_global",
381
381
-
importpath = "github.com/fogleman/gg",
382
382
-
sum = "h1:WXb3TSNmHp2vHoCroCIB1foO/yQ36swABL8aOVeDpgg=",
383
383
-
version = "v1.2.1-0.20190220221249-0403632d5b90",
384
384
-
)
385
385
-
go_repository(
386
386
-
name = "com_github_fsnotify_fsnotify",
387
387
-
build_file_proto_mode = "disable_global",
388
388
-
importpath = "github.com/fsnotify/fsnotify",
389
389
-
sum = "h1:n+5WquG0fcWoWp6xPWfHdbskMCQaFnG6PfBrh1Ky4HY=",
390
390
-
version = "v1.6.0",
391
391
-
)
392
392
-
393
393
-
go_repository(
394
394
-
name = "com_github_getsentry_sentry_go",
395
395
-
build_file_proto_mode = "disable_global",
396
396
-
importpath = "github.com/getsentry/sentry-go",
397
397
-
sum = "h1:XNX9zKbv7baSEI65l+H1GEJgSeIC1c7EN5kluWaP6dM=",
398
398
-
version = "v0.22.0",
399
399
-
)
400
400
-
go_repository(
401
401
-
name = "com_github_gfleury_go_bitbucket_v1",
402
402
-
build_file_proto_mode = "disable_global",
403
403
-
importpath = "github.com/gfleury/go-bitbucket-v1",
404
404
-
sum = "h1:Ea58sAu8LX/NS7z3aeL+YX/7+FSd9jsxq6Ecpz7QEDM=",
405
405
-
version = "v0.0.0-20230626192437-8d7be5866751",
406
406
-
)
407
407
-
go_repository(
408
408
-
name = "com_github_ghodss_yaml",
409
409
-
build_file_proto_mode = "disable_global",
410
410
-
importpath = "github.com/ghodss/yaml",
411
411
-
sum = "h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=",
412
412
-
version = "v1.0.0",
413
413
-
)
414
414
-
go_repository(
415
415
-
name = "com_github_gin_contrib_sse",
416
416
-
build_file_proto_mode = "disable_global",
417
417
-
importpath = "github.com/gin-contrib/sse",
418
418
-
sum = "h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE=",
419
419
-
version = "v0.1.0",
420
420
-
)
421
421
-
go_repository(
422
422
-
name = "com_github_gin_gonic_gin",
423
423
-
build_file_proto_mode = "disable_global",
424
424
-
importpath = "github.com/gin-gonic/gin",
425
425
-
sum = "h1:4+fr/el88TOO3ewCmQr8cx/CtZ/umlIRIs5M4NTNjf8=",
426
426
-
version = "v1.8.1",
427
427
-
)
428
428
-
go_repository(
429
429
-
name = "com_github_gliderlabs_ssh",
430
430
-
build_file_proto_mode = "disable_global",
431
431
-
importpath = "github.com/gliderlabs/ssh",
432
432
-
sum = "h1:OcaySEmAQJgyYcArR+gGGTHCyE7nvhEMTlYY+Dp8CpY=",
433
433
-
version = "v0.3.5",
434
434
-
)
435
435
-
436
436
-
go_repository(
437
437
-
name = "com_github_go_enry_go_enry_v2",
438
438
-
build_file_proto_mode = "disable_global",
439
439
-
importpath = "github.com/go-enry/go-enry/v2",
440
440
-
sum = "h1:QrY3hx/RiqCJJRbdU0MOcjfTM1a586J0WSooqdlJIhs=",
441
441
-
version = "v2.8.4",
442
442
-
)
443
443
-
go_repository(
444
444
-
name = "com_github_go_enry_go_oniguruma",
445
445
-
build_file_proto_mode = "disable_global",
446
446
-
importpath = "github.com/go-enry/go-oniguruma",
447
447
-
sum = "h1:k8aAMuJfMrqm/56SG2lV9Cfti6tC4x8673aHCcBk+eo=",
448
448
-
version = "v1.2.1",
449
449
-
)
450
450
-
go_repository(
451
451
-
name = "com_github_go_errors_errors",
452
452
-
build_file_proto_mode = "disable_global",
453
453
-
importpath = "github.com/go-errors/errors",
454
454
-
sum = "h1:J6MZopCL4uSllY1OfXM374weqZFFItUbrImctkmUxIA=",
455
455
-
version = "v1.4.2",
456
456
-
)
457
457
-
go_repository(
458
458
-
name = "com_github_go_git_gcfg",
459
459
-
build_file_proto_mode = "disable_global",
460
460
-
importpath = "github.com/go-git/gcfg",
461
461
-
sum = "h1:+zs/tPmkDkHx3U66DAb0lQFJrpS6731Oaa12ikc+DiI=",
462
462
-
version = "v1.5.1-0.20230307220236-3a3c6141e376",
463
463
-
)
464
464
-
go_repository(
465
465
-
name = "com_github_go_git_go_billy_v5",
466
466
-
build_file_proto_mode = "disable_global",
467
467
-
importpath = "github.com/go-git/go-billy/v5",
468
468
-
sum = "h1:Uwp5tDRkPr+l/TnbHOQzp+tmJfLceOlbVucgpTz8ix4=",
469
469
-
version = "v5.4.1",
470
470
-
)
471
471
-
go_repository(
472
472
-
name = "com_github_go_git_go_git_fixtures_v4",
473
473
-
build_file_proto_mode = "disable_global",
474
474
-
importpath = "github.com/go-git/go-git-fixtures/v4",
475
475
-
sum = "h1:Pz0DHeFij3XFhoBRGUDPzSJ+w2UcK5/0JvF8DRI58r8=",
476
476
-
version = "v4.3.2-0.20230305113008-0c11038e723f",
477
477
-
)
478
478
-
go_repository(
479
479
-
name = "com_github_go_git_go_git_v5",
480
480
-
build_file_proto_mode = "disable_global",
481
481
-
importpath = "github.com/go-git/go-git/v5",
482
482
-
sum = "h1:t9AudWVLmqzlo+4bqdf7GY+46SUuRsx59SboFxkq2aE=",
483
483
-
version = "v5.7.0",
484
484
-
)
485
485
-
go_repository(
486
486
-
name = "com_github_go_gl_glfw",
487
487
-
build_file_proto_mode = "disable_global",
488
488
-
importpath = "github.com/go-gl/glfw",
489
489
-
sum = "h1:QbL/5oDUmRBzO9/Z7Seo6zf912W/a6Sr4Eu0G/3Jho0=",
490
490
-
version = "v0.0.0-20190409004039-e6da0acd62b1",
491
491
-
)
492
492
-
493
493
-
go_repository(
494
494
-
name = "com_github_go_kit_log",
495
495
-
build_file_proto_mode = "disable_global",
496
496
-
importpath = "github.com/go-kit/log",
497
497
-
sum = "h1:MRVx0/zhvdseW+Gza6N9rVzU/IVzaeE1SFI4raAhmBU=",
498
498
-
version = "v0.2.1",
499
499
-
)
500
500
-
go_repository(
501
501
-
name = "com_github_go_logfmt_logfmt",
502
502
-
build_file_proto_mode = "disable_global",
503
503
-
importpath = "github.com/go-logfmt/logfmt",
504
504
-
sum = "h1:otpy5pqBCBZ1ng9RQ0dPu4PN7ba75Y/aA+UpowDyNVA=",
505
505
-
version = "v0.5.1",
506
506
-
)
507
507
-
go_repository(
508
508
-
name = "com_github_go_logr_logr",
509
509
-
build_file_proto_mode = "disable_global",
510
510
-
importpath = "github.com/go-logr/logr",
511
511
-
sum = "h1:g01GSCwiDw2xSZfjJ2/T9M+S6pFdcNtFYsp+Y43HYDQ=",
512
512
-
version = "v1.2.4",
513
513
-
)
514
514
-
go_repository(
515
515
-
name = "com_github_go_logr_stdr",
516
516
-
build_file_proto_mode = "disable_global",
517
517
-
importpath = "github.com/go-logr/stdr",
518
518
-
sum = "h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag=",
519
519
-
version = "v1.2.2",
520
520
-
)
521
521
-
go_repository(
522
522
-
name = "com_github_go_martini_martini",
523
523
-
build_file_proto_mode = "disable_global",
524
524
-
importpath = "github.com/go-martini/martini",
525
525
-
sum = "h1:xveKWz2iaueeTaUgdetzel+U7exyigDYBryyVfV/rZk=",
526
526
-
version = "v0.0.0-20170121215854-22fa46961aab",
527
527
-
)
528
528
-
go_repository(
529
529
-
name = "com_github_go_ole_go_ole",
530
530
-
build_file_proto_mode = "disable_global",
531
531
-
importpath = "github.com/go-ole/go-ole",
532
532
-
sum = "h1:/Fpf6oFPoeFik9ty7siob0G6Ke8QvQEuVcuChpwXzpY=",
533
533
-
version = "v1.2.6",
534
534
-
)
535
535
-
go_repository(
536
536
-
name = "com_github_go_playground_locales",
537
537
-
build_file_proto_mode = "disable_global",
538
538
-
importpath = "github.com/go-playground/locales",
539
539
-
sum = "h1:u50s323jtVGugKlcYeyzC0etD1HifMjqmJqb8WugfUU=",
540
540
-
version = "v0.14.0",
541
541
-
)
542
542
-
go_repository(
543
543
-
name = "com_github_go_playground_universal_translator",
544
544
-
build_file_proto_mode = "disable_global",
545
545
-
importpath = "github.com/go-playground/universal-translator",
546
546
-
sum = "h1:82dyy6p4OuJq4/CByFNOn/jYrnRPArHwAcmLoJZxyho=",
547
547
-
version = "v0.18.0",
548
548
-
)
549
549
-
go_repository(
550
550
-
name = "com_github_go_playground_validator_v10",
551
551
-
build_file_proto_mode = "disable_global",
552
552
-
importpath = "github.com/go-playground/validator/v10",
553
553
-
sum = "h1:prmOlTVv+YjZjmRmNSF3VmspqJIxJWXmqUsHwfTRRkQ=",
554
554
-
version = "v10.11.1",
555
555
-
)
556
556
-
go_repository(
557
557
-
name = "com_github_gobwas_glob",
558
558
-
build_file_proto_mode = "disable_global",
559
559
-
importpath = "github.com/gobwas/glob",
560
560
-
sum = "h1:A4xDbljILXROh+kObIiy5kIaPYD8e96x1tgBhUI5J+Y=",
561
561
-
version = "v0.2.3",
562
562
-
)
563
563
-
564
564
-
go_repository(
565
565
-
name = "com_github_goccy_go_json",
566
566
-
build_file_proto_mode = "disable_global",
567
567
-
importpath = "github.com/goccy/go-json",
568
568
-
sum = "h1:/pAaQDLHEoCq/5FFmSKBswWmK6H0e8g4159Kc/X/nqk=",
569
569
-
version = "v0.9.11",
570
570
-
)
571
571
-
go_repository(
572
572
-
name = "com_github_gogo_googleapis",
573
573
-
build_file_proto_mode = "disable_global",
574
574
-
importpath = "github.com/gogo/googleapis",
575
575
-
sum = "h1:1Yx4Myt7BxzvUr5ldGSbwYiZG6t9wGBZ+8/fX3Wvtq0=",
576
576
-
version = "v1.4.1",
577
577
-
)
578
578
-
go_repository(
579
579
-
name = "com_github_gogo_protobuf",
580
580
-
build_file_proto_mode = "disable_global",
581
581
-
importpath = "github.com/gogo/protobuf",
582
582
-
sum = "h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=",
583
583
-
version = "v1.3.2",
584
584
-
)
585
585
-
go_repository(
586
586
-
name = "com_github_gogo_status",
587
587
-
build_file_proto_mode = "disable_global",
588
588
-
importpath = "github.com/gogo/status",
589
589
-
sum = "h1:+eIkrewn5q6b30y+g/BJINVVdi2xH7je5MPJ3ZPK3JA=",
590
590
-
version = "v1.1.0",
591
591
-
)
592
592
-
go_repository(
593
593
-
name = "com_github_golang_freetype",
594
594
-
build_file_proto_mode = "disable_global",
595
595
-
importpath = "github.com/golang/freetype",
596
596
-
sum = "h1:DACJavvAHhabrF08vX0COfcOBJRhZ8lUbR+ZWIs0Y5g=",
597
597
-
version = "v0.0.0-20170609003504-e2365dfdc4a0",
598
598
-
)
599
599
-
go_repository(
600
600
-
name = "com_github_golang_glog",
601
601
-
build_file_proto_mode = "disable_global",
602
602
-
importpath = "github.com/golang/glog",
603
603
-
sum = "h1:/d3pCKDPWNnvIWe0vVUpNP32qc8U3PDVxySP/y360qE=",
604
604
-
version = "v1.1.0",
605
605
-
)
606
606
-
go_repository(
607
607
-
name = "com_github_golang_groupcache",
608
608
-
build_file_proto_mode = "disable_global",
609
609
-
importpath = "github.com/golang/groupcache",
610
610
-
sum = "h1:oI5xCqsCo564l8iNU+DwB5epxmsaqB+rhGL0m5jtYqE=",
611
611
-
version = "v0.0.0-20210331224755-41bb18bfe9da",
612
612
-
)
613
613
-
614
614
-
go_repository(
615
615
-
name = "com_github_golang_mock",
616
616
-
build_file_proto_mode = "disable_global",
617
617
-
importpath = "github.com/golang/mock",
618
618
-
sum = "h1:ErTB+efbowRARo13NNdxyJji2egdxLGQhRaY+DUumQc=",
619
619
-
version = "v1.6.0",
620
620
-
)
621
621
-
go_repository(
622
622
-
name = "com_github_golang_protobuf",
623
623
-
build_file_proto_mode = "disable_global",
624
624
-
importpath = "github.com/golang/protobuf",
625
625
-
sum = "h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg=",
626
626
-
version = "v1.5.3",
627
627
-
)
628
628
-
go_repository(
629
629
-
name = "com_github_golang_snappy",
630
630
-
build_file_proto_mode = "disable_global",
631
631
-
importpath = "github.com/golang/snappy",
632
632
-
sum = "h1:yAGX7huGHXlcLOEtBnF4w7FQwA26wojNCwOYAEhLjQM=",
633
633
-
version = "v0.0.4",
634
634
-
)
635
635
-
636
636
-
go_repository(
637
637
-
name = "com_github_google_go_cmp",
638
638
-
build_file_proto_mode = "disable_global",
639
639
-
importpath = "github.com/google/go-cmp",
640
640
-
sum = "h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=",
641
641
-
version = "v0.5.9",
642
642
-
)
643
643
-
go_repository(
644
644
-
name = "com_github_google_go_github_v27",
645
645
-
build_file_proto_mode = "disable_global",
646
646
-
importpath = "github.com/google/go-github/v27",
647
647
-
sum = "h1:oiOZuBmGHvrGM1X9uNUAUlLgp5r1UUO/M/KnbHnLRlQ=",
648
648
-
version = "v27.0.6",
649
649
-
)
650
650
-
go_repository(
651
651
-
name = "com_github_google_go_pkcs11",
652
652
-
build_file_proto_mode = "disable_global",
653
653
-
importpath = "github.com/google/go-pkcs11",
654
654
-
sum = "h1:5meDPB26aJ98f+K9G21f0AqZwo/S5BJMJh8nuhMbdsI=",
655
655
-
version = "v0.2.0",
656
656
-
)
657
657
-
658
658
-
go_repository(
659
659
-
name = "com_github_google_go_querystring",
660
660
-
build_file_proto_mode = "disable_global",
661
661
-
importpath = "github.com/google/go-querystring",
662
662
-
sum = "h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=",
663
663
-
version = "v1.1.0",
664
664
-
)
665
665
-
666
666
-
go_repository(
667
667
-
name = "com_github_google_martian_v3",
668
668
-
build_file_proto_mode = "disable_global",
669
669
-
importpath = "github.com/google/martian/v3",
670
670
-
sum = "h1:IqNFLAmvJOgVlpdEBiQbDc2EwKW77amAycfTuWKdfvw=",
671
671
-
version = "v3.3.2",
672
672
-
)
673
673
-
go_repository(
674
674
-
name = "com_github_google_pprof",
675
675
-
build_file_proto_mode = "disable_global",
676
676
-
importpath = "github.com/google/pprof",
677
677
-
sum = "h1:hR7/MlvK23p6+lIw9SN1TigNLn9ZnF3W4SYRKq2gAHs=",
678
678
-
version = "v0.0.0-20230602150820-91b7bce49751",
679
679
-
)
680
680
-
go_repository(
681
681
-
name = "com_github_google_s2a_go",
682
682
-
build_file_proto_mode = "disable_global",
683
683
-
importpath = "github.com/google/s2a-go",
684
684
-
sum = "h1:1kZ/sQM3srePvKs3tXAvQzo66XfcReoqFpIpIccE7Oc=",
685
685
-
version = "v0.1.4",
686
686
-
)
687
687
-
688
688
-
go_repository(
689
689
-
name = "com_github_google_slothfs",
690
690
-
build_file_proto_mode = "disable_global",
691
691
-
importpath = "github.com/google/slothfs",
692
692
-
sum = "h1:iuModVoTuW2lBUobX9QBgqD+ipHbWKug6n8qkJfDtUE=",
693
693
-
version = "v0.0.0-20190717100203-59c1163fd173",
694
694
-
)
695
695
-
go_repository(
696
696
-
name = "com_github_google_uuid",
697
697
-
build_file_proto_mode = "disable_global",
698
698
-
importpath = "github.com/google/uuid",
699
699
-
sum = "h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=",
700
700
-
version = "v1.3.0",
701
701
-
)
702
702
-
go_repository(
703
703
-
name = "com_github_googleapis_enterprise_certificate_proxy",
704
704
-
build_file_proto_mode = "disable_global",
705
705
-
importpath = "github.com/googleapis/enterprise-certificate-proxy",
706
706
-
sum = "h1:UR4rDjcgpgEnqpIEvkiqTYKBCKLNmlge2eVjoZfySzM=",
707
707
-
version = "v0.2.5",
708
708
-
)
709
709
-
go_repository(
710
710
-
name = "com_github_googleapis_gax_go_v2",
711
711
-
build_file_proto_mode = "disable_global",
712
712
-
importpath = "github.com/googleapis/gax-go/v2",
713
713
-
sum = "h1:9V9PWXEsWnPpQhu/PeQIkS4eGzMlTLGgt80cUUI8Ki4=",
714
714
-
version = "v2.11.0",
715
715
-
)
716
716
-
717
717
-
go_repository(
718
718
-
name = "com_github_gorilla_css",
719
719
-
build_file_proto_mode = "disable_global",
720
720
-
importpath = "github.com/gorilla/css",
721
721
-
sum = "h1:BQqNyPTi50JCFMTw/b67hByjMVXZRwGha6wxVGkeihY=",
722
722
-
version = "v1.0.0",
723
723
-
)
724
724
-
725
725
-
go_repository(
726
726
-
name = "com_github_grafana_regexp",
727
727
-
build_file_proto_mode = "disable_global",
728
728
-
importpath = "github.com/grafana/regexp",
729
729
-
sum = "h1:7aN5cccjIqCLTzedH7MZzRZt5/lsAHch6Z3L2ZGn5FA=",
730
730
-
version = "v0.0.0-20221123153739-15dc172cd2db",
731
731
-
)
732
732
-
go_repository(
733
733
-
name = "com_github_grpc_ecosystem_grpc_gateway",
734
734
-
build_file_proto_mode = "disable_global",
735
735
-
importpath = "github.com/grpc-ecosystem/grpc-gateway",
736
736
-
sum = "h1:gmcG1KaJ57LophUzW0Hy8NmPhnMZb4M0+kPpLofRdBo=",
737
737
-
version = "v1.16.0",
738
738
-
)
739
739
-
go_repository(
740
740
-
name = "com_github_grpc_ecosystem_grpc_gateway_v2",
741
741
-
build_file_proto_mode = "disable_global",
742
742
-
importpath = "github.com/grpc-ecosystem/grpc-gateway/v2",
743
743
-
sum = "h1:YBftPWNWd4WwGqtY2yeZL2ef8rHAxPBD8KFhJpmcqms=",
744
744
-
version = "v2.16.0",
745
745
-
)
746
746
-
go_repository(
747
747
-
name = "com_github_hashicorp_go_cleanhttp",
748
748
-
build_file_proto_mode = "disable_global",
749
749
-
importpath = "github.com/hashicorp/go-cleanhttp",
750
750
-
sum = "h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9neXJWAZQ=",
751
751
-
version = "v0.5.2",
752
752
-
)
753
753
-
go_repository(
754
754
-
name = "com_github_hashicorp_go_hclog",
755
755
-
build_file_proto_mode = "disable_global",
756
756
-
importpath = "github.com/hashicorp/go-hclog",
757
757
-
sum = "h1:K4ev2ib4LdQETX5cSZBG0DVLk1jwGqSPXBjdah3veNs=",
758
758
-
version = "v0.16.2",
759
759
-
)
760
760
-
go_repository(
761
761
-
name = "com_github_hashicorp_go_retryablehttp",
762
762
-
build_file_proto_mode = "disable_global",
763
763
-
importpath = "github.com/hashicorp/go-retryablehttp",
764
764
-
sum = "h1:ZQgVdpTdAL7WpMIwLzCfbalOcSUdkDZnpUv3/+BxzFA=",
765
765
-
version = "v0.7.4",
766
766
-
)
767
767
-
768
768
-
go_repository(
769
769
-
name = "com_github_hdrhistogram_hdrhistogram_go",
770
770
-
build_file_proto_mode = "disable_global",
771
771
-
importpath = "github.com/HdrHistogram/hdrhistogram-go",
772
772
-
sum = "h1:5IcZpTvzydCQeHzK4Ef/D5rrSqwxob0t8PQPMybUNFM=",
773
773
-
version = "v1.1.2",
774
774
-
)
775
775
-
go_repository(
776
776
-
name = "com_github_hexops_autogold",
777
777
-
build_file_proto_mode = "disable_global",
778
778
-
importpath = "github.com/hexops/autogold",
779
779
-
sum = "h1:YgxF9OHWbEIUjhDbpnLhgVsjUDsiHDTyDfy2lrfdlzo=",
780
780
-
version = "v1.3.1",
781
781
-
)
782
782
-
go_repository(
783
783
-
name = "com_github_hexops_autogold_v2",
784
784
-
build_file_proto_mode = "disable_global",
785
785
-
importpath = "github.com/hexops/autogold/v2",
786
786
-
sum = "h1:zyrfTlNfyxLpX/zuk8wjTeTYP5AXaFeeRYFEZfHPwao=",
787
787
-
version = "v2.0.3",
788
788
-
)
789
789
-
go_repository(
790
790
-
name = "com_github_hexops_gotextdiff",
791
791
-
build_file_proto_mode = "disable_global",
792
792
-
importpath = "github.com/hexops/gotextdiff",
793
793
-
sum = "h1:gitA9+qJrrTCsiCl7+kh75nPqQt1cx4ZkudSTLoUqJM=",
794
794
-
version = "v1.0.3",
795
795
-
)
796
796
-
go_repository(
797
797
-
name = "com_github_hexops_valast",
798
798
-
build_file_proto_mode = "disable_global",
799
799
-
importpath = "github.com/hexops/valast",
800
800
-
sum = "h1:oBoGERMJh6UZdRc6cduE1CTPK+VAdXA59Y1HFgu3sm0=",
801
801
-
version = "v1.4.3",
802
802
-
)
803
803
-
804
804
-
go_repository(
805
805
-
name = "com_github_hydrogen18_memlistener",
806
806
-
build_file_proto_mode = "disable_global",
807
807
-
importpath = "github.com/hydrogen18/memlistener",
808
808
-
sum = "h1:JR7eDj8HD6eXrc5fWLbSUnfcQFL06PYvCc0DKQnWfaU=",
809
809
-
version = "v1.0.0",
810
810
-
)
811
811
-
go_repository(
812
812
-
name = "com_github_ianlancetaylor_demangle",
813
813
-
build_file_proto_mode = "disable_global",
814
814
-
importpath = "github.com/ianlancetaylor/demangle",
815
815
-
sum = "h1:BA4a7pe6ZTd9F8kXETBoijjFJ/ntaa//1wiH9BZu4zU=",
816
816
-
version = "v0.0.0-20230524184225-eabc099b10ab",
817
817
-
)
818
818
-
go_repository(
819
819
-
name = "com_github_imdario_mergo",
820
820
-
build_file_proto_mode = "disable_global",
821
821
-
importpath = "github.com/imdario/mergo",
822
822
-
sum = "h1:wwQJbIsHYGMUyLSPrEq1CT16AhnhNJQ51+4fdHUnCl4=",
823
823
-
version = "v0.3.16",
824
824
-
)
825
825
-
826
826
-
go_repository(
827
827
-
name = "com_github_iris_contrib_schema",
828
828
-
build_file_proto_mode = "disable_global",
829
829
-
importpath = "github.com/iris-contrib/schema",
830
830
-
sum = "h1:CPSBLyx2e91H2yJzPuhGuifVRnZBBJ3pCOMbOvPZaTw=",
831
831
-
version = "v0.0.6",
832
832
-
)
833
833
-
go_repository(
834
834
-
name = "com_github_itchyny_gojq",
835
835
-
build_file_proto_mode = "disable_global",
836
836
-
importpath = "github.com/itchyny/gojq",
837
837
-
sum = "h1:YhLueoHhHiN4mkfM+3AyJV6EPcCxKZsOnYf+aVSwaQw=",
838
838
-
version = "v0.12.11",
839
839
-
)
840
840
-
go_repository(
841
841
-
name = "com_github_itchyny_timefmt_go",
842
842
-
build_file_proto_mode = "disable_global",
843
843
-
importpath = "github.com/itchyny/timefmt-go",
844
844
-
sum = "h1:G0INE2la8S6ru/ZI5JecgyzbbJNs5lG1RcBqa7Jm6GE=",
845
845
-
version = "v0.1.5",
846
846
-
)
847
847
-
go_repository(
848
848
-
name = "com_github_jbenet_go_context",
849
849
-
build_file_proto_mode = "disable_global",
850
850
-
importpath = "github.com/jbenet/go-context",
851
851
-
sum = "h1:BQSFePA1RWJOlocH6Fxy8MmwDt+yVQYULKfN0RoTN8A=",
852
852
-
version = "v0.0.0-20150711004518-d14ea06fba99",
853
853
-
)
854
854
-
go_repository(
855
855
-
name = "com_github_jessevdk_go_flags",
856
856
-
build_file_proto_mode = "disable_global",
857
857
-
importpath = "github.com/jessevdk/go-flags",
858
858
-
sum = "h1:1jKYvbxEjfUl0fmqTCOfonvskHHXMjBySTLW4y9LFvc=",
859
859
-
version = "v1.5.0",
860
860
-
)
861
861
-
go_repository(
862
862
-
name = "com_github_joker_jade",
863
863
-
build_file_proto_mode = "disable_global",
864
864
-
importpath = "github.com/Joker/jade",
865
865
-
sum = "h1:Qbeh12Vq6BxURXT1qZBRHsDxeURB8ztcL6f3EXSGeHk=",
866
866
-
version = "v1.1.3",
867
867
-
)
868
868
-
869
869
-
go_repository(
870
870
-
name = "com_github_josharian_intern",
871
871
-
build_file_proto_mode = "disable_global",
872
872
-
importpath = "github.com/josharian/intern",
873
873
-
sum = "h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY=",
874
874
-
version = "v1.0.0",
875
875
-
)
876
876
-
go_repository(
877
877
-
name = "com_github_jpillora_backoff",
878
878
-
build_file_proto_mode = "disable_global",
879
879
-
importpath = "github.com/jpillora/backoff",
880
880
-
sum = "h1:uvFg412JmmHBHw7iwprIxkPMI+sGQ4kzOWsMeHnm2EA=",
881
881
-
version = "v1.0.0",
882
882
-
)
883
883
-
go_repository(
884
884
-
name = "com_github_json_iterator_go",
885
885
-
build_file_proto_mode = "disable_global",
886
886
-
importpath = "github.com/json-iterator/go",
887
887
-
sum = "h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM=",
888
888
-
version = "v1.1.12",
889
889
-
)
890
890
-
891
891
-
go_repository(
892
892
-
name = "com_github_julienschmidt_httprouter",
893
893
-
build_file_proto_mode = "disable_global",
894
894
-
importpath = "github.com/julienschmidt/httprouter",
895
895
-
sum = "h1:U0609e9tgbseu3rBINet9P48AI/D3oJs4dN7jwJOQ1U=",
896
896
-
version = "v1.3.0",
897
897
-
)
898
898
-
go_repository(
899
899
-
name = "com_github_jung_kurt_gofpdf",
900
900
-
build_file_proto_mode = "disable_global",
901
901
-
importpath = "github.com/jung-kurt/gofpdf",
902
902
-
sum = "h1:PJr+ZMXIecYc1Ey2zucXdR73SMBtgjPgwa31099IMv0=",
903
903
-
version = "v1.0.3-0.20190309125859-24315acbbda5",
904
904
-
)
905
905
-
906
906
-
go_repository(
907
907
-
name = "com_github_kataras_blocks",
908
908
-
build_file_proto_mode = "disable_global",
909
909
-
importpath = "github.com/kataras/blocks",
910
910
-
sum = "h1:cF3RDY/vxnSRezc7vLFlQFTYXG/yAr1o7WImJuZbzC4=",
911
911
-
version = "v0.0.7",
912
912
-
)
913
913
-
go_repository(
914
914
-
name = "com_github_kataras_golog",
915
915
-
build_file_proto_mode = "disable_global",
916
916
-
importpath = "github.com/kataras/golog",
917
917
-
sum = "h1:isP8th4PJH2SrbkciKnylaND9xoTtfxv++NB+DF0l9g=",
918
918
-
version = "v0.1.8",
919
919
-
)
920
920
-
go_repository(
921
921
-
name = "com_github_kataras_iris_v12",
922
922
-
build_file_proto_mode = "disable_global",
923
923
-
importpath = "github.com/kataras/iris/v12",
924
924
-
sum = "h1:WzDY5nGuW/LgVaFS5BtTkW3crdSKJ/FEgWnxPnIVVLI=",
925
925
-
version = "v12.2.0",
926
926
-
)
927
927
-
928
928
-
go_repository(
929
929
-
name = "com_github_kataras_pio",
930
930
-
build_file_proto_mode = "disable_global",
931
931
-
importpath = "github.com/kataras/pio",
932
932
-
sum = "h1:kqreJ5KOEXGMwHAWHDwIl+mjfNCPhAwZPa8gK7MKlyw=",
933
933
-
version = "v0.0.11",
934
934
-
)
935
935
-
go_repository(
936
936
-
name = "com_github_kataras_sitemap",
937
937
-
build_file_proto_mode = "disable_global",
938
938
-
importpath = "github.com/kataras/sitemap",
939
939
-
sum = "h1:w71CRMMKYMJh6LR2wTgnk5hSgjVNB9KL60n5e2KHvLY=",
940
940
-
version = "v0.0.6",
941
941
-
)
942
942
-
go_repository(
943
943
-
name = "com_github_kataras_tunnel",
944
944
-
build_file_proto_mode = "disable_global",
945
945
-
importpath = "github.com/kataras/tunnel",
946
946
-
sum = "h1:sCAqWuJV7nPzGrlb0os3j49lk2JhILT0rID38NHNLpA=",
947
947
-
version = "v0.0.4",
948
948
-
)
949
949
-
go_repository(
950
950
-
name = "com_github_keegancsmith_rpc",
951
951
-
build_file_proto_mode = "disable_global",
952
952
-
importpath = "github.com/keegancsmith/rpc",
953
953
-
sum = "h1:wGWOpjcNrZaY8GDYZJfvyxmlLljm3YQWF+p918DXtDk=",
954
954
-
version = "v1.3.0",
955
955
-
)
956
956
-
go_repository(
957
957
-
name = "com_github_keegancsmith_tmpfriend",
958
958
-
build_file_proto_mode = "disable_global",
959
959
-
importpath = "github.com/keegancsmith/tmpfriend",
960
960
-
sum = "h1:xa9SZfAid/jlS3kjwAvVDQFpe6t8SiS0Vl/H51BZYww=",
961
961
-
version = "v0.0.0-20180423180255-86e88902a513",
962
962
-
)
963
963
-
go_repository(
964
964
-
name = "com_github_kevinburke_ssh_config",
965
965
-
build_file_proto_mode = "disable_global",
966
966
-
importpath = "github.com/kevinburke/ssh_config",
967
967
-
sum = "h1:x584FjTGwHzMwvHx18PXxbBVzfnxogHaAReU4gf13a4=",
968
968
-
version = "v1.2.0",
969
969
-
)
970
970
-
go_repository(
971
971
-
name = "com_github_kisielk_errcheck",
972
972
-
build_file_proto_mode = "disable_global",
973
973
-
importpath = "github.com/kisielk/errcheck",
974
974
-
sum = "h1:e8esj/e4R+SAOwFwN+n3zr0nYeCyeweozKfO23MvHzY=",
975
975
-
version = "v1.5.0",
976
976
-
)
977
977
-
go_repository(
978
978
-
name = "com_github_kisielk_gotool",
979
979
-
build_file_proto_mode = "disable_global",
980
980
-
importpath = "github.com/kisielk/gotool",
981
981
-
sum = "h1:AV2c/EiW3KqPNT9ZKl07ehoAGi4C5/01Cfbblndcapg=",
982
982
-
version = "v1.0.0",
983
983
-
)
984
984
-
go_repository(
985
985
-
name = "com_github_klauspost_compress",
986
986
-
build_file_proto_mode = "disable_global",
987
987
-
importpath = "github.com/klauspost/compress",
988
988
-
sum = "h1:iULayQNOReoYUe+1qtKOqw9CwJv3aNQu8ivo7lw1HU4=",
989
989
-
version = "v1.16.0",
990
990
-
)
991
991
-
992
992
-
go_repository(
993
993
-
name = "com_github_kr_pretty",
994
994
-
build_file_proto_mode = "disable_global",
995
995
-
importpath = "github.com/kr/pretty",
996
996
-
sum = "h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=",
997
997
-
version = "v0.3.1",
998
998
-
)
999
999
-
go_repository(
1000
1000
-
name = "com_github_kr_pty",
1001
1001
-
build_file_proto_mode = "disable_global",
1002
1002
-
importpath = "github.com/kr/pty",
1003
1003
-
sum = "h1:VkoXIwSboBpnk99O/KFauAEILuNHv5DVFKZMBN/gUgw=",
1004
1004
-
version = "v1.1.1",
1005
1005
-
)
1006
1006
-
go_repository(
1007
1007
-
name = "com_github_kr_text",
1008
1008
-
build_file_proto_mode = "disable_global",
1009
1009
-
importpath = "github.com/kr/text",
1010
1010
-
sum = "h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=",
1011
1011
-
version = "v0.2.0",
1012
1012
-
)
1013
1013
-
1014
1014
-
go_repository(
1015
1015
-
name = "com_github_labstack_echo_v4",
1016
1016
-
build_file_proto_mode = "disable_global",
1017
1017
-
importpath = "github.com/labstack/echo/v4",
1018
1018
-
sum = "h1:5CiyngihEO4HXsz3vVsJn7f8xAlWwRr3aY6Ih280ZKA=",
1019
1019
-
version = "v4.10.0",
1020
1020
-
)
1021
1021
-
go_repository(
1022
1022
-
name = "com_github_labstack_gommon",
1023
1023
-
build_file_proto_mode = "disable_global",
1024
1024
-
importpath = "github.com/labstack/gommon",
1025
1025
-
sum = "h1:y7cvthEAEbU0yHOf4axH8ZG2NH8knB9iNSoTO8dyIk8=",
1026
1026
-
version = "v0.4.0",
1027
1027
-
)
1028
1028
-
go_repository(
1029
1029
-
name = "com_github_leodido_go_urn",
1030
1030
-
build_file_proto_mode = "disable_global",
1031
1031
-
importpath = "github.com/leodido/go-urn",
1032
1032
-
sum = "h1:BqpAaACuzVSgi/VLzGZIobT2z4v53pjosyNd9Yv6n/w=",
1033
1033
-
version = "v1.2.1",
1034
1034
-
)
1035
1035
-
go_repository(
1036
1036
-
name = "com_github_lufia_plan9stats",
1037
1037
-
build_file_proto_mode = "disable_global",
1038
1038
-
importpath = "github.com/lufia/plan9stats",
1039
1039
-
sum = "h1:6E+4a0GO5zZEnZ81pIr0yLvtUWk2if982qA3F3QD6H4=",
1040
1040
-
version = "v0.0.0-20211012122336-39d0f177ccd0",
1041
1041
-
)
1042
1042
-
1043
1043
-
go_repository(
1044
1044
-
name = "com_github_mailgun_raymond_v2",
1045
1045
-
build_file_proto_mode = "disable_global",
1046
1046
-
importpath = "github.com/mailgun/raymond/v2",
1047
1047
-
sum = "h1:5dmlB680ZkFG2RN/0lvTAghrSxIESeu9/2aeDqACtjw=",
1048
1048
-
version = "v2.0.48",
1049
1049
-
)
1050
1050
-
go_repository(
1051
1051
-
name = "com_github_mailru_easyjson",
1052
1052
-
build_file_proto_mode = "disable_global",
1053
1053
-
importpath = "github.com/mailru/easyjson",
1054
1054
-
sum = "h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0=",
1055
1055
-
version = "v0.7.7",
1056
1056
-
)
1057
1057
-
go_repository(
1058
1058
-
name = "com_github_matryer_is",
1059
1059
-
build_file_proto_mode = "disable_global",
1060
1060
-
importpath = "github.com/matryer/is",
1061
1061
-
sum = "h1:92UTHpy8CDwaJ08GqLDzhhuixiBUUD1p3AU6PHddz4A=",
1062
1062
-
version = "v1.2.0",
1063
1063
-
)
1064
1064
-
go_repository(
1065
1065
-
name = "com_github_mattn_go_colorable",
1066
1066
-
build_file_proto_mode = "disable_global",
1067
1067
-
importpath = "github.com/mattn/go-colorable",
1068
1068
-
sum = "h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA=",
1069
1069
-
version = "v0.1.13",
1070
1070
-
)
1071
1071
-
go_repository(
1072
1072
-
name = "com_github_mattn_go_isatty",
1073
1073
-
build_file_proto_mode = "disable_global",
1074
1074
-
importpath = "github.com/mattn/go-isatty",
1075
1075
-
sum = "h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APPA=",
1076
1076
-
version = "v0.0.19",
1077
1077
-
)
1078
1078
-
1079
1079
-
go_repository(
1080
1080
-
name = "com_github_matttproud_golang_protobuf_extensions",
1081
1081
-
build_file_proto_mode = "disable_global",
1082
1082
-
importpath = "github.com/matttproud/golang_protobuf_extensions",
1083
1083
-
sum = "h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo=",
1084
1084
-
version = "v1.0.4",
1085
1085
-
)
1086
1086
-
1087
1087
-
go_repository(
1088
1088
-
name = "com_github_microcosm_cc_bluemonday",
1089
1089
-
build_file_proto_mode = "disable_global",
1090
1090
-
importpath = "github.com/microcosm-cc/bluemonday",
1091
1091
-
sum = "h1:SMZe2IGa0NuHvnVNAZ+6B38gsTbi5e4sViiWJyDDqFY=",
1092
1092
-
version = "v1.0.23",
1093
1093
-
)
1094
1094
-
go_repository(
1095
1095
-
name = "com_github_microsoft_go_winio",
1096
1096
-
build_file_proto_mode = "disable_global",
1097
1097
-
importpath = "github.com/Microsoft/go-winio",
1098
1098
-
sum = "h1:9/kr64B9VUZrLm5YYwbGtUJnMgqWVOdUAXu6Migciow=",
1099
1099
-
version = "v0.6.1",
1100
1100
-
)
1101
1101
-
1102
1102
-
go_repository(
1103
1103
-
name = "com_github_mitchellh_mapstructure",
1104
1104
-
build_file_proto_mode = "disable_global",
1105
1105
-
importpath = "github.com/mitchellh/mapstructure",
1106
1106
-
sum = "h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY=",
1107
1107
-
version = "v1.5.0",
1108
1108
-
)
1109
1109
-
go_repository(
1110
1110
-
name = "com_github_mmcloughlin_avo",
1111
1111
-
build_file_proto_mode = "disable_global",
1112
1112
-
importpath = "github.com/mmcloughlin/avo",
1113
1113
-
sum = "h1:nAco9/aI9Lg2kiuROBY6BhCI/z0t5jEvJfjWbL8qXLU=",
1114
1114
-
version = "v0.5.0",
1115
1115
-
)
1116
1116
-
1117
1117
-
go_repository(
1118
1118
-
name = "com_github_moby_sys_mountinfo",
1119
1119
-
build_file_proto_mode = "disable_global",
1120
1120
-
importpath = "github.com/moby/sys/mountinfo",
1121
1121
-
sum = "h1:BzJjoreD5BMFNmD9Rus6gdd1pLuecOFPt8wC+Vygl78=",
1122
1122
-
version = "v0.6.2",
1123
1123
-
)
1124
1124
-
go_repository(
1125
1125
-
name = "com_github_modern_go_concurrent",
1126
1126
-
build_file_proto_mode = "disable_global",
1127
1127
-
importpath = "github.com/modern-go/concurrent",
1128
1128
-
sum = "h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=",
1129
1129
-
version = "v0.0.0-20180306012644-bacd9c7ef1dd",
1130
1130
-
)
1131
1131
-
go_repository(
1132
1132
-
name = "com_github_modern_go_reflect2",
1133
1133
-
build_file_proto_mode = "disable_global",
1134
1134
-
importpath = "github.com/modern-go/reflect2",
1135
1135
-
sum = "h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M=",
1136
1136
-
version = "v1.0.2",
1137
1137
-
)
1138
1138
-
1139
1139
-
go_repository(
1140
1140
-
name = "com_github_mschoch_smat",
1141
1141
-
build_file_proto_mode = "disable_global",
1142
1142
-
importpath = "github.com/mschoch/smat",
1143
1143
-
sum = "h1:8imxQsjDm8yFEAVBe7azKmKSgzSkZXDuKkSq9374khM=",
1144
1144
-
version = "v0.2.0",
1145
1145
-
)
1146
1146
-
go_repository(
1147
1147
-
name = "com_github_mwitkow_go_conntrack",
1148
1148
-
build_file_proto_mode = "disable_global",
1149
1149
-
importpath = "github.com/mwitkow/go-conntrack",
1150
1150
-
sum = "h1:KUppIJq7/+SVif2QVs3tOP0zanoHgBEVAwHxUSIzRqU=",
1151
1151
-
version = "v0.0.0-20190716064945-2f068394615f",
1152
1152
-
)
1153
1153
-
go_repository(
1154
1154
-
name = "com_github_mxk_go_flowrate",
1155
1155
-
build_file_proto_mode = "disable_global",
1156
1156
-
importpath = "github.com/mxk/go-flowrate",
1157
1157
-
sum = "h1:y5//uYreIhSUg3J1GEMiLbxo1LJaP8RfCpH6pymGZus=",
1158
1158
-
version = "v0.0.0-20140419014527-cca7078d478f",
1159
1159
-
)
1160
1160
-
1161
1161
-
go_repository(
1162
1162
-
name = "com_github_niemeyer_pretty",
1163
1163
-
build_file_proto_mode = "disable_global",
1164
1164
-
importpath = "github.com/niemeyer/pretty",
1165
1165
-
sum = "h1:fD57ERR4JtEqsWbfPhv4DMiApHyliiK5xCTNVSPiaAs=",
1166
1166
-
version = "v0.0.0-20200227124842-a10e7caefd8e",
1167
1167
-
)
1168
1168
-
go_repository(
1169
1169
-
name = "com_github_nightlyone_lockfile",
1170
1170
-
build_file_proto_mode = "disable_global",
1171
1171
-
importpath = "github.com/nightlyone/lockfile",
1172
1172
-
sum = "h1:RHep2cFKK4PonZJDdEl4GmkabuhbsRMgk/k3uAmxBiA=",
1173
1173
-
version = "v1.0.0",
1174
1174
-
)
1175
1175
-
1176
1176
-
go_repository(
1177
1177
-
name = "com_github_opentracing_opentracing_go",
1178
1178
-
build_file_proto_mode = "disable_global",
1179
1179
-
importpath = "github.com/opentracing/opentracing-go",
1180
1180
-
sum = "h1:uEJPy/1a5RIPAJ0Ov+OIO8OxWu77jEv+1B0VhjKrZUs=",
1181
1181
-
version = "v1.2.0",
1182
1182
-
)
1183
1183
-
go_repository(
1184
1184
-
name = "com_github_pelletier_go_toml",
1185
1185
-
build_file_proto_mode = "disable_global",
1186
1186
-
importpath = "github.com/pelletier/go-toml",
1187
1187
-
sum = "h1:4yBQzkHv+7BHq2PQUZF3Mx0IYxG7LsP222s7Agd3ve8=",
1188
1188
-
version = "v1.9.5",
1189
1189
-
)
1190
1190
-
go_repository(
1191
1191
-
name = "com_github_pelletier_go_toml_v2",
1192
1192
-
build_file_proto_mode = "disable_global",
1193
1193
-
importpath = "github.com/pelletier/go-toml/v2",
1194
1194
-
sum = "h1:ipoSadvV8oGUjnUbMub59IDPPwfxF694nG/jwbMiyQg=",
1195
1195
-
version = "v2.0.5",
1196
1196
-
)
1197
1197
-
go_repository(
1198
1198
-
name = "com_github_peterbourgon_ff_v3",
1199
1199
-
build_file_proto_mode = "disable_global",
1200
1200
-
importpath = "github.com/peterbourgon/ff/v3",
1201
1201
-
sum = "h1:2J07/5/36kd9HYVt42Zve0xCeQ+LLRIvoKrt6sAZXJ4=",
1202
1202
-
version = "v3.3.2",
1203
1203
-
)
1204
1204
-
go_repository(
1205
1205
-
name = "com_github_pingcap_errors",
1206
1206
-
build_file_proto_mode = "disable_global",
1207
1207
-
importpath = "github.com/pingcap/errors",
1208
1208
-
sum = "h1:lFuQV/oaUMGcD2tqt+01ROSmJs75VG1ToEOkZIZ4nE4=",
1209
1209
-
version = "v0.11.4",
1210
1210
-
)
1211
1211
-
go_repository(
1212
1212
-
name = "com_github_pjbgf_sha1cd",
1213
1213
-
build_file_proto_mode = "disable_global",
1214
1214
-
importpath = "github.com/pjbgf/sha1cd",
1215
1215
-
sum = "h1:4D5XXmUUBUl/xQ6IjCkEAbqXskkq/4O7LmGn0AqMDs4=",
1216
1216
-
version = "v0.3.0",
1217
1217
-
)
1218
1218
-
go_repository(
1219
1219
-
name = "com_github_pkg_diff",
1220
1220
-
build_file_proto_mode = "disable_global",
1221
1221
-
importpath = "github.com/pkg/diff",
1222
1222
-
sum = "h1:aoZm08cpOy4WuID//EZDgcC4zIxODThtZNPirFr42+A=",
1223
1223
-
version = "v0.0.0-20210226163009-20ebb0f2a09e",
1224
1224
-
)
1225
1225
-
go_repository(
1226
1226
-
name = "com_github_pkg_errors",
1227
1227
-
build_file_proto_mode = "disable_global",
1228
1228
-
importpath = "github.com/pkg/errors",
1229
1229
-
sum = "h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=",
1230
1230
-
version = "v0.9.1",
1231
1231
-
)
1232
1232
-
go_repository(
1233
1233
-
name = "com_github_pmezard_go_difflib",
1234
1234
-
build_file_proto_mode = "disable_global",
1235
1235
-
importpath = "github.com/pmezard/go-difflib",
1236
1236
-
sum = "h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=",
1237
1237
-
version = "v1.0.0",
1238
1238
-
)
1239
1239
-
go_repository(
1240
1240
-
name = "com_github_power_devops_perfstat",
1241
1241
-
build_file_proto_mode = "disable_global",
1242
1242
-
importpath = "github.com/power-devops/perfstat",
1243
1243
-
sum = "h1:0LFwY6Q3gMACTjAbMZBjXAqTOzOwFaj2Ld6cjeQ7Rig=",
1244
1244
-
version = "v0.0.0-20221212215047-62379fc7944b",
1245
1245
-
)
1246
1246
-
go_repository(
1247
1247
-
name = "com_github_prashantv_gostub",
1248
1248
-
build_file_proto_mode = "disable_global",
1249
1249
-
importpath = "github.com/prashantv/gostub",
1250
1250
-
sum = "h1:BTyx3RfQjRHnUWaGF9oQos79AlQ5k8WNktv7VGvVH4g=",
1251
1251
-
version = "v1.1.0",
1252
1252
-
)
1253
1253
-
go_repository(
1254
1254
-
name = "com_github_prometheus_client_golang",
1255
1255
-
build_file_proto_mode = "disable_global",
1256
1256
-
importpath = "github.com/prometheus/client_golang",
1257
1257
-
sum = "h1:yk/hx9hDbrGHovbci4BY+pRMfSuuat626eFsHb7tmT8=",
1258
1258
-
version = "v1.16.0",
1259
1259
-
)
1260
1260
-
go_repository(
1261
1261
-
name = "com_github_prometheus_client_model",
1262
1262
-
build_file_proto_mode = "disable_global",
1263
1263
-
importpath = "github.com/prometheus/client_model",
1264
1264
-
sum = "h1:5lQXD3cAg1OXBf4Wq03gTrXHeaV0TQvGfUooCfx1yqY=",
1265
1265
-
version = "v0.4.0",
1266
1266
-
)
1267
1267
-
go_repository(
1268
1268
-
name = "com_github_prometheus_common",
1269
1269
-
build_file_proto_mode = "disable_global",
1270
1270
-
importpath = "github.com/prometheus/common",
1271
1271
-
sum = "h1:+5BrQJwiBB9xsMygAB3TNvpQKOwlkc25LbISbrdOOfY=",
1272
1272
-
version = "v0.44.0",
1273
1273
-
)
1274
1274
-
go_repository(
1275
1275
-
name = "com_github_prometheus_procfs",
1276
1276
-
build_file_proto_mode = "disable_global",
1277
1277
-
importpath = "github.com/prometheus/procfs",
1278
1278
-
sum = "h1:5EAgkfkMl659uZPbe9AS2N68a7Cc1TJbPEuGzFuRbyk=",
1279
1279
-
version = "v0.11.0",
1280
1280
-
)
1281
1281
-
go_repository(
1282
1282
-
name = "com_github_protonmail_go_crypto",
1283
1283
-
build_file_proto_mode = "disable_global",
1284
1284
-
importpath = "github.com/ProtonMail/go-crypto",
1285
1285
-
sum = "h1:vV3RryLxt42+ZIVOFbYJCH1jsZNTNmj2NYru5zfx+4E=",
1286
1286
-
version = "v0.0.0-20230626094100-7e9e0395ebec",
1287
1287
-
)
1288
1288
-
go_repository(
1289
1289
-
name = "com_github_roaringbitmap_roaring",
1290
1290
-
build_file_proto_mode = "disable_global",
1291
1291
-
importpath = "github.com/RoaringBitmap/roaring",
1292
1292
-
sum = "h1:aQmu9zQxDU0uhwR8SXOH/OrqEf+X8A0LQmwW3JX8Lcg=",
1293
1293
-
version = "v1.3.0",
1294
1294
-
)
1295
1295
-
go_repository(
1296
1296
-
name = "com_github_rogpeppe_fastuuid",
1297
1297
-
build_file_proto_mode = "disable_global",
1298
1298
-
importpath = "github.com/rogpeppe/fastuuid",
1299
1299
-
sum = "h1:Ppwyp6VYCF1nvBTXL3trRso7mXMlRrw9ooo375wvi2s=",
1300
1300
-
version = "v1.2.0",
1301
1301
-
)
1302
1302
-
go_repository(
1303
1303
-
name = "com_github_rogpeppe_go_internal",
1304
1304
-
build_file_proto_mode = "disable_global",
1305
1305
-
importpath = "github.com/rogpeppe/go-internal",
1306
1306
-
sum = "h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ=",
1307
1307
-
version = "v1.10.0",
1308
1308
-
)
1309
1309
-
go_repository(
1310
1310
-
name = "com_github_rs_xid",
1311
1311
-
build_file_proto_mode = "disable_global",
1312
1312
-
importpath = "github.com/rs/xid",
1313
1313
-
sum = "h1:mKX4bl4iPYJtEIxp6CYiUuLQ/8DYMoz0PUdtGgMFRVc=",
1314
1314
-
version = "v1.5.0",
1315
1315
-
)
1316
1316
-
1317
1317
-
go_repository(
1318
1318
-
name = "com_github_russross_blackfriday_v2",
1319
1319
-
build_file_proto_mode = "disable_global",
1320
1320
-
importpath = "github.com/russross/blackfriday/v2",
1321
1321
-
sum = "h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk=",
1322
1322
-
version = "v2.1.0",
1323
1323
-
)
1324
1324
-
1325
1325
-
go_repository(
1326
1326
-
name = "com_github_schollz_closestmatch",
1327
1327
-
build_file_proto_mode = "disable_global",
1328
1328
-
importpath = "github.com/schollz/closestmatch",
1329
1329
-
sum = "h1:Uel2GXEpJqOWBrlyI+oY9LTiyyjYS17cCYRqP13/SHk=",
1330
1330
-
version = "v2.1.0+incompatible",
1331
1331
-
)
1332
1332
-
go_repository(
1333
1333
-
name = "com_github_sergi_go_diff",
1334
1334
-
build_file_proto_mode = "disable_global",
1335
1335
-
importpath = "github.com/sergi/go-diff",
1336
1336
-
sum = "h1:xkr+Oxo4BOQKmkn/B9eMK0g5Kg/983T9DqqPHwYqD+8=",
1337
1337
-
version = "v1.3.1",
1338
1338
-
)
1339
1339
-
go_repository(
1340
1340
-
name = "com_github_shirou_gopsutil_v3",
1341
1341
-
build_file_proto_mode = "disable_global",
1342
1342
-
importpath = "github.com/shirou/gopsutil/v3",
1343
1343
-
sum = "h1:5SgDCeQ0KW0S4N0znjeM/eFHXXOKyv2dVNgRq/c9P6Y=",
1344
1344
-
version = "v3.23.5",
1345
1345
-
)
1346
1346
-
go_repository(
1347
1347
-
name = "com_github_shoenig_go_m1cpu",
1348
1348
-
build_file_proto_mode = "disable_global",
1349
1349
-
importpath = "github.com/shoenig/go-m1cpu",
1350
1350
-
sum = "h1:nxdKQNcEB6vzgA2E2bvzKIYRuNj7XNJ4S/aRSwKzFtM=",
1351
1351
-
version = "v0.1.6",
1352
1352
-
)
1353
1353
-
go_repository(
1354
1354
-
name = "com_github_shoenig_test",
1355
1355
-
build_file_proto_mode = "disable_global",
1356
1356
-
importpath = "github.com/shoenig/test",
1357
1357
-
sum = "h1:kVTaSd7WLz5WZ2IaoM0RSzRsUD+m8wRR+5qvntpn4LU=",
1358
1358
-
version = "v0.6.4",
1359
1359
-
)
1360
1360
-
1361
1361
-
go_repository(
1362
1362
-
name = "com_github_shopify_goreferrer",
1363
1363
-
build_file_proto_mode = "disable_global",
1364
1364
-
importpath = "github.com/Shopify/goreferrer",
1365
1365
-
sum = "h1:KkH3I3sJuOLP3TjA/dfr4NAY8bghDwnXiU7cTKxQqo0=",
1366
1366
-
version = "v0.0.0-20220729165902-8cddb4f5de06",
1367
1367
-
)
1368
1368
-
1369
1369
-
go_repository(
1370
1370
-
name = "com_github_sirupsen_logrus",
1371
1371
-
build_file_proto_mode = "disable_global",
1372
1372
-
importpath = "github.com/sirupsen/logrus",
1373
1373
-
sum = "h1:trlNQbNUG3OdDrDil03MCb1H2o9nJ1x4/5LYw7byDE0=",
1374
1374
-
version = "v1.9.0",
1375
1375
-
)
1376
1376
-
go_repository(
1377
1377
-
name = "com_github_skeema_knownhosts",
1378
1378
-
build_file_proto_mode = "disable_global",
1379
1379
-
importpath = "github.com/skeema/knownhosts",
1380
1380
-
sum = "h1:MTk78x9FPgDFVFkDLTrsnnfCJl7g1C/nnKvePgrIngE=",
1381
1381
-
version = "v1.1.1",
1382
1382
-
)
1383
1383
-
1384
1384
-
go_repository(
1385
1385
-
name = "com_github_sourcegraph_go_ctags",
1386
1386
-
build_file_proto_mode = "disable_global",
1387
1387
-
importpath = "github.com/sourcegraph/go-ctags",
1388
1388
-
sum = "h1:tsWE3F3StWvnwLnC4JWb0zX0UHY9GULQtu/aoQvLJvI=",
1389
1389
-
version = "v0.0.0-20230111110657-c27675da7f71",
1390
1390
-
)
1391
1391
-
go_repository(
1392
1392
-
name = "com_github_sourcegraph_log",
1393
1393
-
build_file_proto_mode = "disable_global",
1394
1394
-
importpath = "github.com/sourcegraph/log",
1395
1395
-
sum = "h1:xz1lIhx6YvYYhiLio9INCIWHCZFH9MoRVuFye/lz07c=",
1396
1396
-
version = "v0.0.0-20230523201558-ad2d71b4d2ee",
1397
1397
-
)
1398
1398
-
go_repository(
1399
1399
-
name = "com_github_sourcegraph_mountinfo",
1400
1400
-
build_file_proto_mode = "disable_global",
1401
1401
-
importpath = "github.com/sourcegraph/mountinfo",
1402
1402
-
sum = "h1:NSYSPQOE7yyyytLbKQHjxSkPnBagaGQblgVMQrQ1je0=",
1403
1403
-
version = "v0.0.0-20230106004439-7026e28cef67",
1404
1404
-
)
1405
1405
-
1406
1406
-
go_repository(
1407
1407
-
name = "com_github_stretchr_objx",
1408
1408
-
build_file_proto_mode = "disable_global",
1409
1409
-
importpath = "github.com/stretchr/objx",
1410
1410
-
sum = "h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c=",
1411
1411
-
version = "v0.5.0",
1412
1412
-
)
1413
1413
-
go_repository(
1414
1414
-
name = "com_github_stretchr_testify",
1415
1415
-
build_file_proto_mode = "disable_global",
1416
1416
-
importpath = "github.com/stretchr/testify",
1417
1417
-
sum = "h1:RP3t2pwF7cMEbC1dqtB6poj3niw/9gnV4Cjg5oW5gtY=",
1418
1418
-
version = "v1.8.3",
1419
1419
-
)
1420
1420
-
go_repository(
1421
1421
-
name = "com_github_tdewolff_minify_v2",
1422
1422
-
build_file_proto_mode = "disable_global",
1423
1423
-
importpath = "github.com/tdewolff/minify/v2",
1424
1424
-
sum = "h1:kejsHQMM17n6/gwdw53qsi6lg0TGddZADVyQOz1KMdE=",
1425
1425
-
version = "v2.12.4",
1426
1426
-
)
1427
1427
-
go_repository(
1428
1428
-
name = "com_github_tdewolff_parse_v2",
1429
1429
-
build_file_proto_mode = "disable_global",
1430
1430
-
importpath = "github.com/tdewolff/parse/v2",
1431
1431
-
sum = "h1:KCkDvNUMof10e3QExio9OPZJT8SbdKojLBumw8YZycQ=",
1432
1432
-
version = "v2.6.4",
1433
1433
-
)
1434
1434
-
go_repository(
1435
1435
-
name = "com_github_tklauser_go_sysconf",
1436
1436
-
build_file_proto_mode = "disable_global",
1437
1437
-
importpath = "github.com/tklauser/go-sysconf",
1438
1438
-
sum = "h1:89WgdJhk5SNwJfu+GKyYveZ4IaJ7xAkecBo+KdJV0CM=",
1439
1439
-
version = "v0.3.11",
1440
1440
-
)
1441
1441
-
go_repository(
1442
1442
-
name = "com_github_tklauser_numcpus",
1443
1443
-
build_file_proto_mode = "disable_global",
1444
1444
-
importpath = "github.com/tklauser/numcpus",
1445
1445
-
sum = "h1:kebhY2Qt+3U6RNK7UqpYNA+tJ23IBEGKkB7JQBfDYms=",
1446
1446
-
version = "v0.6.0",
1447
1447
-
)
1448
1448
-
go_repository(
1449
1449
-
name = "com_github_uber_jaeger_client_go",
1450
1450
-
build_file_proto_mode = "disable_global",
1451
1451
-
importpath = "github.com/uber/jaeger-client-go",
1452
1452
-
sum = "h1:D6wyKGCecFaSRUpo8lCVbaOOb6ThwMmTEbhRwtKR97o=",
1453
1453
-
version = "v2.30.0+incompatible",
1454
1454
-
)
1455
1455
-
go_repository(
1456
1456
-
name = "com_github_uber_jaeger_lib",
1457
1457
-
build_file_proto_mode = "disable_global",
1458
1458
-
importpath = "github.com/uber/jaeger-lib",
1459
1459
-
sum = "h1:td4jdvLcExb4cBISKIpHuGoVXh+dVKhn2Um6rjCsSsg=",
1460
1460
-
version = "v2.4.1+incompatible",
1461
1461
-
)
1462
1462
-
1463
1463
-
go_repository(
1464
1464
-
name = "com_github_ugorji_go_codec",
1465
1465
-
build_file_proto_mode = "disable_global",
1466
1466
-
importpath = "github.com/ugorji/go/codec",
1467
1467
-
sum = "h1:YPXUKf7fYbp/y8xloBqZOw2qaVggbfwMlI8WM3wZUJ0=",
1468
1468
-
version = "v1.2.7",
1469
1469
-
)
1470
1470
-
go_repository(
1471
1471
-
name = "com_github_urfave_negroni",
1472
1472
-
build_file_proto_mode = "disable_global",
1473
1473
-
importpath = "github.com/urfave/negroni",
1474
1474
-
sum = "h1:kIimOitoypq34K7TG7DUaJ9kq/N4Ofuwi1sjz0KipXc=",
1475
1475
-
version = "v1.0.0",
1476
1476
-
)
1477
1477
-
go_repository(
1478
1478
-
name = "com_github_valyala_bytebufferpool",
1479
1479
-
build_file_proto_mode = "disable_global",
1480
1480
-
importpath = "github.com/valyala/bytebufferpool",
1481
1481
-
sum = "h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw=",
1482
1482
-
version = "v1.0.0",
1483
1483
-
)
1484
1484
-
go_repository(
1485
1485
-
name = "com_github_valyala_fasthttp",
1486
1486
-
build_file_proto_mode = "disable_global",
1487
1487
-
importpath = "github.com/valyala/fasthttp",
1488
1488
-
sum = "h1:CRq/00MfruPGFLTQKY8b+8SfdK60TxNztjRMnH0t1Yc=",
1489
1489
-
version = "v1.40.0",
1490
1490
-
)
1491
1491
-
go_repository(
1492
1492
-
name = "com_github_valyala_fasttemplate",
1493
1493
-
build_file_proto_mode = "disable_global",
1494
1494
-
importpath = "github.com/valyala/fasttemplate",
1495
1495
-
sum = "h1:lxLXG0uE3Qnshl9QyaK6XJxMXlQZELvChBOCmQD0Loo=",
1496
1496
-
version = "v1.2.2",
1497
1497
-
)
1498
1498
-
1499
1499
-
go_repository(
1500
1500
-
name = "com_github_vmihailenco_msgpack_v5",
1501
1501
-
build_file_proto_mode = "disable_global",
1502
1502
-
importpath = "github.com/vmihailenco/msgpack/v5",
1503
1503
-
sum = "h1:5gO0H1iULLWGhs2H5tbAHIZTV8/cYafcFOr9znI5mJU=",
1504
1504
-
version = "v5.3.5",
1505
1505
-
)
1506
1506
-
go_repository(
1507
1507
-
name = "com_github_vmihailenco_tagparser_v2",
1508
1508
-
build_file_proto_mode = "disable_global",
1509
1509
-
importpath = "github.com/vmihailenco/tagparser/v2",
1510
1510
-
sum = "h1:y09buUbR+b5aycVFQs/g70pqKVZNBmxwAhO7/IwNM9g=",
1511
1511
-
version = "v2.0.0",
1512
1512
-
)
1513
1513
-
go_repository(
1514
1514
-
name = "com_github_xanzy_go_gitlab",
1515
1515
-
build_file_proto_mode = "disable_global",
1516
1516
-
importpath = "github.com/xanzy/go-gitlab",
1517
1517
-
sum = "h1:jR8V9cK9jXRQDb46KOB20NCF3ksY09luaG0IfXE6p7w=",
1518
1518
-
version = "v0.86.0",
1519
1519
-
)
1520
1520
-
go_repository(
1521
1521
-
name = "com_github_xanzy_ssh_agent",
1522
1522
-
build_file_proto_mode = "disable_global",
1523
1523
-
importpath = "github.com/xanzy/ssh-agent",
1524
1524
-
sum = "h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM=",
1525
1525
-
version = "v0.3.3",
1526
1526
-
)
1527
1527
-
go_repository(
1528
1528
-
name = "com_github_xeipuuv_gojsonpointer",
1529
1529
-
build_file_proto_mode = "disable_global",
1530
1530
-
importpath = "github.com/xeipuuv/gojsonpointer",
1531
1531
-
sum = "h1:zGWFAtiMcyryUHoUjUJX0/lt1H2+i2Ka2n+D3DImSNo=",
1532
1532
-
version = "v0.0.0-20190905194746-02993c407bfb",
1533
1533
-
)
1534
1534
-
go_repository(
1535
1535
-
name = "com_github_xeipuuv_gojsonreference",
1536
1536
-
build_file_proto_mode = "disable_global",
1537
1537
-
importpath = "github.com/xeipuuv/gojsonreference",
1538
1538
-
sum = "h1:EzJWgHovont7NscjpAxXsDA8S8BMYve8Y5+7cuRE7R0=",
1539
1539
-
version = "v0.0.0-20180127040603-bd5ef7bd5415",
1540
1540
-
)
1541
1541
-
go_repository(
1542
1542
-
name = "com_github_xeipuuv_gojsonschema",
1543
1543
-
build_file_proto_mode = "disable_global",
1544
1544
-
importpath = "github.com/xeipuuv/gojsonschema",
1545
1545
-
sum = "h1:LhYJRs+L4fBtjZUfuSZIKGeVu0QRy8e5Xi7D17UxZ74=",
1546
1546
-
version = "v1.2.0",
1547
1547
-
)
1548
1548
-
go_repository(
1549
1549
-
name = "com_github_xhit_go_str2duration_v2",
1550
1550
-
build_file_proto_mode = "disable_global",
1551
1551
-
importpath = "github.com/xhit/go-str2duration/v2",
1552
1552
-
sum = "h1:lxklc02Drh6ynqX+DdPyp5pCKLUQpRT8bp8Ydu2Bstc=",
1553
1553
-
version = "v2.1.0",
1554
1554
-
)
1555
1555
-
1556
1556
-
go_repository(
1557
1557
-
name = "com_github_yosssi_ace",
1558
1558
-
build_file_proto_mode = "disable_global",
1559
1559
-
importpath = "github.com/yosssi/ace",
1560
1560
-
sum = "h1:tUkIP/BLdKqrlrPwcmH0shwEEhTRHoGnc1wFIWmaBUA=",
1561
1561
-
version = "v0.0.5",
1562
1562
-
)
1563
1563
-
1564
1564
-
go_repository(
1565
1565
-
name = "com_github_yuin_goldmark",
1566
1566
-
build_file_proto_mode = "disable_global",
1567
1567
-
importpath = "github.com/yuin/goldmark",
1568
1568
-
sum = "h1:fVcFKWvrslecOb/tg+Cc05dkeYx540o0FuFt3nUVDoE=",
1569
1569
-
version = "v1.4.13",
1570
1570
-
)
1571
1571
-
go_repository(
1572
1572
-
name = "com_github_yusufpapurcu_wmi",
1573
1573
-
build_file_proto_mode = "disable_global",
1574
1574
-
importpath = "github.com/yusufpapurcu/wmi",
1575
1575
-
sum = "h1:E1ctvB7uKFMOJw3fdOW32DwGE9I7t++CRUEMKvFoFiw=",
1576
1576
-
version = "v1.2.3",
1577
1577
-
)
1578
1578
-
go_repository(
1579
1579
-
name = "com_google_cloud_go",
1580
1580
-
build_file_proto_mode = "disable_global",
1581
1581
-
importpath = "cloud.google.com/go",
1582
1582
-
sum = "h1:wwearW+L7sAPSomPIgJ3bVn6Ck00HGQnn5HMLwf0azo=",
1583
1583
-
version = "v0.110.3",
1584
1584
-
)
1585
1585
-
go_repository(
1586
1586
-
name = "com_google_cloud_go_accessapproval",
1587
1587
-
build_file_proto_mode = "disable_global",
1588
1588
-
importpath = "cloud.google.com/go/accessapproval",
1589
1589
-
sum = "h1:x0cEHro/JFPd7eS4BlEWNTMecIj2HdXjOVB5BtvwER0=",
1590
1590
-
version = "v1.6.0",
1591
1591
-
)
1592
1592
-
go_repository(
1593
1593
-
name = "com_google_cloud_go_accesscontextmanager",
1594
1594
-
build_file_proto_mode = "disable_global",
1595
1595
-
importpath = "cloud.google.com/go/accesscontextmanager",
1596
1596
-
sum = "h1:MG60JgnEoawHJrbWw0jGdv6HLNSf6gQvYRiXpuzqgEA=",
1597
1597
-
version = "v1.7.0",
1598
1598
-
)
1599
1599
-
go_repository(
1600
1600
-
name = "com_google_cloud_go_aiplatform",
1601
1601
-
build_file_proto_mode = "disable_global",
1602
1602
-
importpath = "cloud.google.com/go/aiplatform",
1603
1603
-
sum = "h1:zTw+suCVchgZyO+k847wjzdVjWmrAuehxdvcZvJwfGg=",
1604
1604
-
version = "v1.37.0",
1605
1605
-
)
1606
1606
-
go_repository(
1607
1607
-
name = "com_google_cloud_go_analytics",
1608
1608
-
build_file_proto_mode = "disable_global",
1609
1609
-
importpath = "cloud.google.com/go/analytics",
1610
1610
-
sum = "h1:LqAo3tAh2FU9+w/r7vc3hBjU23Kv7GhO/PDIW7kIYgM=",
1611
1611
-
version = "v0.19.0",
1612
1612
-
)
1613
1613
-
go_repository(
1614
1614
-
name = "com_google_cloud_go_apigateway",
1615
1615
-
build_file_proto_mode = "disable_global",
1616
1616
-
importpath = "cloud.google.com/go/apigateway",
1617
1617
-
sum = "h1:ZI9mVO7x3E9RK/BURm2p1aw9YTBSCQe3klmyP1WxWEg=",
1618
1618
-
version = "v1.5.0",
1619
1619
-
)
1620
1620
-
go_repository(
1621
1621
-
name = "com_google_cloud_go_apigeeconnect",
1622
1622
-
build_file_proto_mode = "disable_global",
1623
1623
-
importpath = "cloud.google.com/go/apigeeconnect",
1624
1624
-
sum = "h1:sWOmgDyAsi1AZ48XRHcATC0tsi9SkPT7DA/+VCfkaeA=",
1625
1625
-
version = "v1.5.0",
1626
1626
-
)
1627
1627
-
go_repository(
1628
1628
-
name = "com_google_cloud_go_apigeeregistry",
1629
1629
-
build_file_proto_mode = "disable_global",
1630
1630
-
importpath = "cloud.google.com/go/apigeeregistry",
1631
1631
-
sum = "h1:E43RdhhCxdlV+I161gUY2rI4eOaMzHTA5kNkvRsFXvc=",
1632
1632
-
version = "v0.6.0",
1633
1633
-
)
1634
1634
-
1635
1635
-
go_repository(
1636
1636
-
name = "com_google_cloud_go_appengine",
1637
1637
-
build_file_proto_mode = "disable_global",
1638
1638
-
importpath = "cloud.google.com/go/appengine",
1639
1639
-
sum = "h1:aBGDKmRIaRRoWJ2tAoN0oVSHoWLhtO9aj/NvUyP4aYs=",
1640
1640
-
version = "v1.7.1",
1641
1641
-
)
1642
1642
-
go_repository(
1643
1643
-
name = "com_google_cloud_go_area120",
1644
1644
-
build_file_proto_mode = "disable_global",
1645
1645
-
importpath = "cloud.google.com/go/area120",
1646
1646
-
sum = "h1:ugckkFh4XkHJMPhTIx0CyvdoBxmOpMe8rNs4Ok8GAag=",
1647
1647
-
version = "v0.7.1",
1648
1648
-
)
1649
1649
-
go_repository(
1650
1650
-
name = "com_google_cloud_go_artifactregistry",
1651
1651
-
build_file_proto_mode = "disable_global",
1652
1652
-
importpath = "cloud.google.com/go/artifactregistry",
1653
1653
-
sum = "h1:o1Q80vqEB6Qp8WLEH3b8FBLNUCrGQ4k5RFj0sn/sgO8=",
1654
1654
-
version = "v1.13.0",
1655
1655
-
)
1656
1656
-
go_repository(
1657
1657
-
name = "com_google_cloud_go_asset",
1658
1658
-
build_file_proto_mode = "disable_global",
1659
1659
-
importpath = "cloud.google.com/go/asset",
1660
1660
-
sum = "h1:YAsssO08BqZ6mncbb6FPlj9h6ACS7bJQUOlzciSfbNk=",
1661
1661
-
version = "v1.13.0",
1662
1662
-
)
1663
1663
-
go_repository(
1664
1664
-
name = "com_google_cloud_go_assuredworkloads",
1665
1665
-
build_file_proto_mode = "disable_global",
1666
1666
-
importpath = "cloud.google.com/go/assuredworkloads",
1667
1667
-
sum = "h1:VLGnVFta+N4WM+ASHbhc14ZOItOabDLH1MSoDv+Xuag=",
1668
1668
-
version = "v1.10.0",
1669
1669
-
)
1670
1670
-
go_repository(
1671
1671
-
name = "com_google_cloud_go_automl",
1672
1672
-
build_file_proto_mode = "disable_global",
1673
1673
-
importpath = "cloud.google.com/go/automl",
1674
1674
-
sum = "h1:50VugllC+U4IGl3tDNcZaWvApHBTrn/TvyHDJ0wM+Uw=",
1675
1675
-
version = "v1.12.0",
1676
1676
-
)
1677
1677
-
go_repository(
1678
1678
-
name = "com_google_cloud_go_baremetalsolution",
1679
1679
-
build_file_proto_mode = "disable_global",
1680
1680
-
importpath = "cloud.google.com/go/baremetalsolution",
1681
1681
-
sum = "h1:2AipdYXL0VxMboelTTw8c1UJ7gYu35LZYUbuRv9Q28s=",
1682
1682
-
version = "v0.5.0",
1683
1683
-
)
1684
1684
-
go_repository(
1685
1685
-
name = "com_google_cloud_go_batch",
1686
1686
-
build_file_proto_mode = "disable_global",
1687
1687
-
importpath = "cloud.google.com/go/batch",
1688
1688
-
sum = "h1:YbMt0E6BtqeD5FvSv1d56jbVsWEzlGm55lYte+M6Mzs=",
1689
1689
-
version = "v0.7.0",
1690
1690
-
)
1691
1691
-
go_repository(
1692
1692
-
name = "com_google_cloud_go_beyondcorp",
1693
1693
-
build_file_proto_mode = "disable_global",
1694
1694
-
importpath = "cloud.google.com/go/beyondcorp",
1695
1695
-
sum = "h1:UkY2BTZkEUAVrgqnSdOJ4p3y9ZRBPEe1LkjgC8Bj/Pc=",
1696
1696
-
version = "v0.5.0",
1697
1697
-
)
1698
1698
-
go_repository(
1699
1699
-
name = "com_google_cloud_go_bigquery",
1700
1700
-
build_file_proto_mode = "disable_global",
1701
1701
-
importpath = "cloud.google.com/go/bigquery",
1702
1702
-
sum = "h1:RscMV6LbnAmhAzD893Lv9nXXy2WCaJmbxYPWDLbGqNQ=",
1703
1703
-
version = "v1.50.0",
1704
1704
-
)
1705
1705
-
go_repository(
1706
1706
-
name = "com_google_cloud_go_billing",
1707
1707
-
build_file_proto_mode = "disable_global",
1708
1708
-
importpath = "cloud.google.com/go/billing",
1709
1709
-
sum = "h1:JYj28UYF5w6VBAh0gQYlgHJ/OD1oA+JgW29YZQU+UHM=",
1710
1710
-
version = "v1.13.0",
1711
1711
-
)
1712
1712
-
go_repository(
1713
1713
-
name = "com_google_cloud_go_binaryauthorization",
1714
1714
-
build_file_proto_mode = "disable_global",
1715
1715
-
importpath = "cloud.google.com/go/binaryauthorization",
1716
1716
-
sum = "h1:d3pMDBCCNivxt5a4eaV7FwL7cSH0H7RrEnFrTb1QKWs=",
1717
1717
-
version = "v1.5.0",
1718
1718
-
)
1719
1719
-
go_repository(
1720
1720
-
name = "com_google_cloud_go_certificatemanager",
1721
1721
-
build_file_proto_mode = "disable_global",
1722
1722
-
importpath = "cloud.google.com/go/certificatemanager",
1723
1723
-
sum = "h1:5C5UWeSt8Jkgp7OWn2rCkLmYurar/vIWIoSQ2+LaTOc=",
1724
1724
-
version = "v1.6.0",
1725
1725
-
)
1726
1726
-
go_repository(
1727
1727
-
name = "com_google_cloud_go_channel",
1728
1728
-
build_file_proto_mode = "disable_global",
1729
1729
-
importpath = "cloud.google.com/go/channel",
1730
1730
-
sum = "h1:GpcQY5UJKeOekYgsX3QXbzzAc/kRGtBq43fTmyKe6Uw=",
1731
1731
-
version = "v1.12.0",
1732
1732
-
)
1733
1733
-
go_repository(
1734
1734
-
name = "com_google_cloud_go_cloudbuild",
1735
1735
-
build_file_proto_mode = "disable_global",
1736
1736
-
importpath = "cloud.google.com/go/cloudbuild",
1737
1737
-
sum = "h1:GHQCjV4WlPPVU/j3Rlpc8vNIDwThhd1U9qSY/NPZdko=",
1738
1738
-
version = "v1.9.0",
1739
1739
-
)
1740
1740
-
go_repository(
1741
1741
-
name = "com_google_cloud_go_clouddms",
1742
1742
-
build_file_proto_mode = "disable_global",
1743
1743
-
importpath = "cloud.google.com/go/clouddms",
1744
1744
-
sum = "h1:E7v4TpDGUyEm1C/4KIrpVSOCTm0P6vWdHT0I4mostRA=",
1745
1745
-
version = "v1.5.0",
1746
1746
-
)
1747
1747
-
go_repository(
1748
1748
-
name = "com_google_cloud_go_cloudtasks",
1749
1749
-
build_file_proto_mode = "disable_global",
1750
1750
-
importpath = "cloud.google.com/go/cloudtasks",
1751
1751
-
sum = "h1:uK5k6abf4yligFgYFnG0ni8msai/dSv6mDmiBulU0hU=",
1752
1752
-
version = "v1.10.0",
1753
1753
-
)
1754
1754
-
go_repository(
1755
1755
-
name = "com_google_cloud_go_compute",
1756
1756
-
build_file_proto_mode = "disable_global",
1757
1757
-
importpath = "cloud.google.com/go/compute",
1758
1758
-
sum = "h1:6aKEtlUiwEpJzM001l0yFkpXmUVXaN8W+fbkb2AZNbg=",
1759
1759
-
version = "v1.20.1",
1760
1760
-
)
1761
1761
-
go_repository(
1762
1762
-
name = "com_google_cloud_go_compute_metadata",
1763
1763
-
build_file_proto_mode = "disable_global",
1764
1764
-
importpath = "cloud.google.com/go/compute/metadata",
1765
1765
-
sum = "h1:mg4jlk7mCAj6xXp9UJ4fjI9VUI5rubuGBW5aJ7UnBMY=",
1766
1766
-
version = "v0.2.3",
1767
1767
-
)
1768
1768
-
go_repository(
1769
1769
-
name = "com_google_cloud_go_contactcenterinsights",
1770
1770
-
build_file_proto_mode = "disable_global",
1771
1771
-
importpath = "cloud.google.com/go/contactcenterinsights",
1772
1772
-
sum = "h1:jXIpfcH/VYSE1SYcPzO0n1VVb+sAamiLOgCw45JbOQk=",
1773
1773
-
version = "v1.6.0",
1774
1774
-
)
1775
1775
-
go_repository(
1776
1776
-
name = "com_google_cloud_go_container",
1777
1777
-
build_file_proto_mode = "disable_global",
1778
1778
-
importpath = "cloud.google.com/go/container",
1779
1779
-
sum = "h1:NKlY/wCDapfVZlbVVaeuu2UZZED5Dy1z4Zx1KhEzm8c=",
1780
1780
-
version = "v1.15.0",
1781
1781
-
)
1782
1782
-
go_repository(
1783
1783
-
name = "com_google_cloud_go_containeranalysis",
1784
1784
-
build_file_proto_mode = "disable_global",
1785
1785
-
importpath = "cloud.google.com/go/containeranalysis",
1786
1786
-
sum = "h1:EQ4FFxNaEAg8PqQCO7bVQfWz9NVwZCUKaM1b3ycfx3U=",
1787
1787
-
version = "v0.9.0",
1788
1788
-
)
1789
1789
-
go_repository(
1790
1790
-
name = "com_google_cloud_go_datacatalog",
1791
1791
-
build_file_proto_mode = "disable_global",
1792
1792
-
importpath = "cloud.google.com/go/datacatalog",
1793
1793
-
sum = "h1:4H5IJiyUE0X6ShQBqgFFZvGGcrwGVndTwUSLP4c52gw=",
1794
1794
-
version = "v1.13.0",
1795
1795
-
)
1796
1796
-
go_repository(
1797
1797
-
name = "com_google_cloud_go_dataflow",
1798
1798
-
build_file_proto_mode = "disable_global",
1799
1799
-
importpath = "cloud.google.com/go/dataflow",
1800
1800
-
sum = "h1:eYyD9o/8Nm6EttsKZaEGD84xC17bNgSKCu0ZxwqUbpg=",
1801
1801
-
version = "v0.8.0",
1802
1802
-
)
1803
1803
-
go_repository(
1804
1804
-
name = "com_google_cloud_go_dataform",
1805
1805
-
build_file_proto_mode = "disable_global",
1806
1806
-
importpath = "cloud.google.com/go/dataform",
1807
1807
-
sum = "h1:Dyk+fufup1FR6cbHjFpMuP4SfPiF3LI3JtoIIALoq48=",
1808
1808
-
version = "v0.7.0",
1809
1809
-
)
1810
1810
-
go_repository(
1811
1811
-
name = "com_google_cloud_go_datafusion",
1812
1812
-
build_file_proto_mode = "disable_global",
1813
1813
-
importpath = "cloud.google.com/go/datafusion",
1814
1814
-
sum = "h1:sZjRnS3TWkGsu1LjYPFD/fHeMLZNXDK6PDHi2s2s/bk=",
1815
1815
-
version = "v1.6.0",
1816
1816
-
)
1817
1817
-
go_repository(
1818
1818
-
name = "com_google_cloud_go_datalabeling",
1819
1819
-
build_file_proto_mode = "disable_global",
1820
1820
-
importpath = "cloud.google.com/go/datalabeling",
1821
1821
-
sum = "h1:ch4qA2yvddGRUrlfwrNJCr79qLqhS9QBwofPHfFlDIk=",
1822
1822
-
version = "v0.7.0",
1823
1823
-
)
1824
1824
-
go_repository(
1825
1825
-
name = "com_google_cloud_go_dataplex",
1826
1826
-
build_file_proto_mode = "disable_global",
1827
1827
-
importpath = "cloud.google.com/go/dataplex",
1828
1828
-
sum = "h1:RvoZ5T7gySwm1CHzAw7yY1QwwqaGswunmqEssPxU/AM=",
1829
1829
-
version = "v1.6.0",
1830
1830
-
)
1831
1831
-
go_repository(
1832
1832
-
name = "com_google_cloud_go_dataproc",
1833
1833
-
build_file_proto_mode = "disable_global",
1834
1834
-
importpath = "cloud.google.com/go/dataproc",
1835
1835
-
sum = "h1:W47qHL3W4BPkAIbk4SWmIERwsWBaNnWm0P2sdx3YgGU=",
1836
1836
-
version = "v1.12.0",
1837
1837
-
)
1838
1838
-
go_repository(
1839
1839
-
name = "com_google_cloud_go_dataqna",
1840
1840
-
build_file_proto_mode = "disable_global",
1841
1841
-
importpath = "cloud.google.com/go/dataqna",
1842
1842
-
sum = "h1:yFzi/YU4YAdjyo7pXkBE2FeHbgz5OQQBVDdbErEHmVQ=",
1843
1843
-
version = "v0.7.0",
1844
1844
-
)
1845
1845
-
go_repository(
1846
1846
-
name = "com_google_cloud_go_datastore",
1847
1847
-
build_file_proto_mode = "disable_global",
1848
1848
-
importpath = "cloud.google.com/go/datastore",
1849
1849
-
sum = "h1:iF6I/HaLs3Ado8uRKMvZRvF/ZLkWaWE9i8AiHzbC774=",
1850
1850
-
version = "v1.11.0",
1851
1851
-
)
1852
1852
-
go_repository(
1853
1853
-
name = "com_google_cloud_go_datastream",
1854
1854
-
build_file_proto_mode = "disable_global",
1855
1855
-
importpath = "cloud.google.com/go/datastream",
1856
1856
-
sum = "h1:BBCBTnWMDwwEzQQmipUXxATa7Cm7CA/gKjKcR2w35T0=",
1857
1857
-
version = "v1.7.0",
1858
1858
-
)
1859
1859
-
go_repository(
1860
1860
-
name = "com_google_cloud_go_deploy",
1861
1861
-
build_file_proto_mode = "disable_global",
1862
1862
-
importpath = "cloud.google.com/go/deploy",
1863
1863
-
sum = "h1:otshdKEbmsi1ELYeCKNYppwV0UH5xD05drSdBm7ouTk=",
1864
1864
-
version = "v1.8.0",
1865
1865
-
)
1866
1866
-
go_repository(
1867
1867
-
name = "com_google_cloud_go_dialogflow",
1868
1868
-
build_file_proto_mode = "disable_global",
1869
1869
-
importpath = "cloud.google.com/go/dialogflow",
1870
1870
-
sum = "h1:uVlKKzp6G/VtSW0E7IH1Y5o0H48/UOCmqksG2riYCwQ=",
1871
1871
-
version = "v1.32.0",
1872
1872
-
)
1873
1873
-
go_repository(
1874
1874
-
name = "com_google_cloud_go_dlp",
1875
1875
-
build_file_proto_mode = "disable_global",
1876
1876
-
importpath = "cloud.google.com/go/dlp",
1877
1877
-
sum = "h1:1JoJqezlgu6NWCroBxr4rOZnwNFILXr4cB9dMaSKO4A=",
1878
1878
-
version = "v1.9.0",
1879
1879
-
)
1880
1880
-
go_repository(
1881
1881
-
name = "com_google_cloud_go_documentai",
1882
1882
-
build_file_proto_mode = "disable_global",
1883
1883
-
importpath = "cloud.google.com/go/documentai",
1884
1884
-
sum = "h1:KM3Xh0QQyyEdC8Gs2vhZfU+rt6OCPF0dwVwxKgLmWfI=",
1885
1885
-
version = "v1.18.0",
1886
1886
-
)
1887
1887
-
go_repository(
1888
1888
-
name = "com_google_cloud_go_domains",
1889
1889
-
build_file_proto_mode = "disable_global",
1890
1890
-
importpath = "cloud.google.com/go/domains",
1891
1891
-
sum = "h1:2ti/o9tlWL4N+wIuWUNH+LbfgpwxPr8J1sv9RHA4bYQ=",
1892
1892
-
version = "v0.8.0",
1893
1893
-
)
1894
1894
-
go_repository(
1895
1895
-
name = "com_google_cloud_go_edgecontainer",
1896
1896
-
build_file_proto_mode = "disable_global",
1897
1897
-
importpath = "cloud.google.com/go/edgecontainer",
1898
1898
-
sum = "h1:O0YVE5v+O0Q/ODXYsQHmHb+sYM8KNjGZw2pjX2Ws41c=",
1899
1899
-
version = "v1.0.0",
1900
1900
-
)
1901
1901
-
go_repository(
1902
1902
-
name = "com_google_cloud_go_errorreporting",
1903
1903
-
build_file_proto_mode = "disable_global",
1904
1904
-
importpath = "cloud.google.com/go/errorreporting",
1905
1905
-
sum = "h1:kj1XEWMu8P0qlLhm3FwcaFsUvXChV/OraZwA70trRR0=",
1906
1906
-
version = "v0.3.0",
1907
1907
-
)
1908
1908
-
go_repository(
1909
1909
-
name = "com_google_cloud_go_essentialcontacts",
1910
1910
-
build_file_proto_mode = "disable_global",
1911
1911
-
importpath = "cloud.google.com/go/essentialcontacts",
1912
1912
-
sum = "h1:gIzEhCoOT7bi+6QZqZIzX1Erj4SswMPIteNvYVlu+pM=",
1913
1913
-
version = "v1.5.0",
1914
1914
-
)
1915
1915
-
go_repository(
1916
1916
-
name = "com_google_cloud_go_eventarc",
1917
1917
-
build_file_proto_mode = "disable_global",
1918
1918
-
importpath = "cloud.google.com/go/eventarc",
1919
1919
-
sum = "h1:fsJmNeqvqtk74FsaVDU6cH79lyZNCYP8Rrv7EhaB/PU=",
1920
1920
-
version = "v1.11.0",
1921
1921
-
)
1922
1922
-
go_repository(
1923
1923
-
name = "com_google_cloud_go_filestore",
1924
1924
-
build_file_proto_mode = "disable_global",
1925
1925
-
importpath = "cloud.google.com/go/filestore",
1926
1926
-
sum = "h1:ckTEXN5towyTMu4q0uQ1Mde/JwTHur0gXs8oaIZnKfw=",
1927
1927
-
version = "v1.6.0",
1928
1928
-
)
1929
1929
-
go_repository(
1930
1930
-
name = "com_google_cloud_go_firestore",
1931
1931
-
build_file_proto_mode = "disable_global",
1932
1932
-
importpath = "cloud.google.com/go/firestore",
1933
1933
-
sum = "h1:IBlRyxgGySXu5VuW0RgGFlTtLukSnNkpDiEOMkQkmpA=",
1934
1934
-
version = "v1.9.0",
1935
1935
-
)
1936
1936
-
go_repository(
1937
1937
-
name = "com_google_cloud_go_functions",
1938
1938
-
build_file_proto_mode = "disable_global",
1939
1939
-
importpath = "cloud.google.com/go/functions",
1940
1940
-
sum = "h1:pPDqtsXG2g9HeOQLoquLbmvmb82Y4Ezdo1GXuotFoWg=",
1941
1941
-
version = "v1.13.0",
1942
1942
-
)
1943
1943
-
go_repository(
1944
1944
-
name = "com_google_cloud_go_gaming",
1945
1945
-
build_file_proto_mode = "disable_global",
1946
1946
-
importpath = "cloud.google.com/go/gaming",
1947
1947
-
sum = "h1:7vEhFnZmd931Mo7sZ6pJy7uQPDxF7m7v8xtBheG08tc=",
1948
1948
-
version = "v1.9.0",
1949
1949
-
)
1950
1950
-
go_repository(
1951
1951
-
name = "com_google_cloud_go_gkebackup",
1952
1952
-
build_file_proto_mode = "disable_global",
1953
1953
-
importpath = "cloud.google.com/go/gkebackup",
1954
1954
-
sum = "h1:za3QZvw6ujR0uyqkhomKKKNoXDyqYGPJies3voUK8DA=",
1955
1955
-
version = "v0.4.0",
1956
1956
-
)
1957
1957
-
go_repository(
1958
1958
-
name = "com_google_cloud_go_gkeconnect",
1959
1959
-
build_file_proto_mode = "disable_global",
1960
1960
-
importpath = "cloud.google.com/go/gkeconnect",
1961
1961
-
sum = "h1:gXYKciHS/Lgq0GJ5Kc9SzPA35NGc3yqu6SkjonpEr2Q=",
1962
1962
-
version = "v0.7.0",
1963
1963
-
)
1964
1964
-
go_repository(
1965
1965
-
name = "com_google_cloud_go_gkehub",
1966
1966
-
build_file_proto_mode = "disable_global",
1967
1967
-
importpath = "cloud.google.com/go/gkehub",
1968
1968
-
sum = "h1:TqCSPsEBQ6oZSJgEYZ3XT8x2gUadbvfwI32YB0kuHCs=",
1969
1969
-
version = "v0.12.0",
1970
1970
-
)
1971
1971
-
go_repository(
1972
1972
-
name = "com_google_cloud_go_gkemulticloud",
1973
1973
-
build_file_proto_mode = "disable_global",
1974
1974
-
importpath = "cloud.google.com/go/gkemulticloud",
1975
1975
-
sum = "h1:8I84Q4vl02rJRsFiinBxl7WCozfdLlUVBQuSrqr9Wtk=",
1976
1976
-
version = "v0.5.0",
1977
1977
-
)
1978
1978
-
go_repository(
1979
1979
-
name = "com_google_cloud_go_gsuiteaddons",
1980
1980
-
build_file_proto_mode = "disable_global",
1981
1981
-
importpath = "cloud.google.com/go/gsuiteaddons",
1982
1982
-
sum = "h1:1mvhXqJzV0Vg5Fa95QwckljODJJfDFXV4pn+iL50zzA=",
1983
1983
-
version = "v1.5.0",
1984
1984
-
)
1985
1985
-
go_repository(
1986
1986
-
name = "com_google_cloud_go_iam",
1987
1987
-
build_file_proto_mode = "disable_global",
1988
1988
-
importpath = "cloud.google.com/go/iam",
1989
1989
-
sum = "h1:+CmB+K0J/33d0zSQ9SlFWUeCCEn5XJA0ZMZ3pHE9u8k=",
1990
1990
-
version = "v0.13.0",
1991
1991
-
)
1992
1992
-
go_repository(
1993
1993
-
name = "com_google_cloud_go_iap",
1994
1994
-
build_file_proto_mode = "disable_global",
1995
1995
-
importpath = "cloud.google.com/go/iap",
1996
1996
-
sum = "h1:PxVHFuMxmSZyfntKXHXhd8bo82WJ+LcATenq7HLdVnU=",
1997
1997
-
version = "v1.7.1",
1998
1998
-
)
1999
1999
-
go_repository(
2000
2000
-
name = "com_google_cloud_go_ids",
2001
2001
-
build_file_proto_mode = "disable_global",
2002
2002
-
importpath = "cloud.google.com/go/ids",
2003
2003
-
sum = "h1:fodnCDtOXuMmS8LTC2y3h8t24U8F3eKWfhi+3LY6Qf0=",
2004
2004
-
version = "v1.3.0",
2005
2005
-
)
2006
2006
-
go_repository(
2007
2007
-
name = "com_google_cloud_go_iot",
2008
2008
-
build_file_proto_mode = "disable_global",
2009
2009
-
importpath = "cloud.google.com/go/iot",
2010
2010
-
sum = "h1:39W5BFSarRNZfVG0eXI5LYux+OVQT8GkgpHCnrZL2vM=",
2011
2011
-
version = "v1.6.0",
2012
2012
-
)
2013
2013
-
go_repository(
2014
2014
-
name = "com_google_cloud_go_kms",
2015
2015
-
build_file_proto_mode = "disable_global",
2016
2016
-
importpath = "cloud.google.com/go/kms",
2017
2017
-
sum = "h1:7hm1bRqGCA1GBRQUrp831TwJ9TWhP+tvLuP497CQS2g=",
2018
2018
-
version = "v1.10.1",
2019
2019
-
)
2020
2020
-
go_repository(
2021
2021
-
name = "com_google_cloud_go_language",
2022
2022
-
build_file_proto_mode = "disable_global",
2023
2023
-
importpath = "cloud.google.com/go/language",
2024
2024
-
sum = "h1:7Ulo2mDk9huBoBi8zCE3ONOoBrL6UXfAI71CLQ9GEIM=",
2025
2025
-
version = "v1.9.0",
2026
2026
-
)
2027
2027
-
go_repository(
2028
2028
-
name = "com_google_cloud_go_lifesciences",
2029
2029
-
build_file_proto_mode = "disable_global",
2030
2030
-
importpath = "cloud.google.com/go/lifesciences",
2031
2031
-
sum = "h1:uWrMjWTsGjLZpCTWEAzYvyXj+7fhiZST45u9AgasasI=",
2032
2032
-
version = "v0.8.0",
2033
2033
-
)
2034
2034
-
go_repository(
2035
2035
-
name = "com_google_cloud_go_logging",
2036
2036
-
build_file_proto_mode = "disable_global",
2037
2037
-
importpath = "cloud.google.com/go/logging",
2038
2038
-
sum = "h1:CJYxlNNNNAMkHp9em/YEXcfJg+rPDg7YfwoRpMU+t5I=",
2039
2039
-
version = "v1.7.0",
2040
2040
-
)
2041
2041
-
go_repository(
2042
2042
-
name = "com_google_cloud_go_longrunning",
2043
2043
-
build_file_proto_mode = "disable_global",
2044
2044
-
importpath = "cloud.google.com/go/longrunning",
2045
2045
-
sum = "h1:v+yFJOfKC3yZdY6ZUI933pIYdhyhV8S3NpWrXWmg7jM=",
2046
2046
-
version = "v0.4.1",
2047
2047
-
)
2048
2048
-
go_repository(
2049
2049
-
name = "com_google_cloud_go_managedidentities",
2050
2050
-
build_file_proto_mode = "disable_global",
2051
2051
-
importpath = "cloud.google.com/go/managedidentities",
2052
2052
-
sum = "h1:ZRQ4k21/jAhrHBVKl/AY7SjgzeJwG1iZa+mJ82P+VNg=",
2053
2053
-
version = "v1.5.0",
2054
2054
-
)
2055
2055
-
go_repository(
2056
2056
-
name = "com_google_cloud_go_maps",
2057
2057
-
build_file_proto_mode = "disable_global",
2058
2058
-
importpath = "cloud.google.com/go/maps",
2059
2059
-
sum = "h1:mv9YaczD4oZBZkM5XJl6fXQ984IkJNHPwkc8MUsdkBo=",
2060
2060
-
version = "v0.7.0",
2061
2061
-
)
2062
2062
-
go_repository(
2063
2063
-
name = "com_google_cloud_go_mediatranslation",
2064
2064
-
build_file_proto_mode = "disable_global",
2065
2065
-
importpath = "cloud.google.com/go/mediatranslation",
2066
2066
-
sum = "h1:anPxH+/WWt8Yc3EdoEJhPMBRF7EhIdz426A+tuoA0OU=",
2067
2067
-
version = "v0.7.0",
2068
2068
-
)
2069
2069
-
go_repository(
2070
2070
-
name = "com_google_cloud_go_memcache",
2071
2071
-
build_file_proto_mode = "disable_global",
2072
2072
-
importpath = "cloud.google.com/go/memcache",
2073
2073
-
sum = "h1:8/VEmWCpnETCrBwS3z4MhT+tIdKgR1Z4Tr2tvYH32rg=",
2074
2074
-
version = "v1.9.0",
2075
2075
-
)
2076
2076
-
go_repository(
2077
2077
-
name = "com_google_cloud_go_metastore",
2078
2078
-
build_file_proto_mode = "disable_global",
2079
2079
-
importpath = "cloud.google.com/go/metastore",
2080
2080
-
sum = "h1:QCFhZVe2289KDBQ7WxaHV2rAmPrmRAdLC6gbjUd3HPo=",
2081
2081
-
version = "v1.10.0",
2082
2082
-
)
2083
2083
-
go_repository(
2084
2084
-
name = "com_google_cloud_go_monitoring",
2085
2085
-
build_file_proto_mode = "disable_global",
2086
2086
-
importpath = "cloud.google.com/go/monitoring",
2087
2087
-
sum = "h1:2qsrgXGVoRXpP7otZ14eE1I568zAa92sJSDPyOJvwjM=",
2088
2088
-
version = "v1.13.0",
2089
2089
-
)
2090
2090
-
go_repository(
2091
2091
-
name = "com_google_cloud_go_networkconnectivity",
2092
2092
-
build_file_proto_mode = "disable_global",
2093
2093
-
importpath = "cloud.google.com/go/networkconnectivity",
2094
2094
-
sum = "h1:ZD6b4Pk1jEtp/cx9nx0ZYcL3BKqDa+KixNDZ6Bjs1B8=",
2095
2095
-
version = "v1.11.0",
2096
2096
-
)
2097
2097
-
go_repository(
2098
2098
-
name = "com_google_cloud_go_networkmanagement",
2099
2099
-
build_file_proto_mode = "disable_global",
2100
2100
-
importpath = "cloud.google.com/go/networkmanagement",
2101
2101
-
sum = "h1:8KWEUNGcpSX9WwZXq7FtciuNGPdPdPN/ruDm769yAEM=",
2102
2102
-
version = "v1.6.0",
2103
2103
-
)
2104
2104
-
go_repository(
2105
2105
-
name = "com_google_cloud_go_networksecurity",
2106
2106
-
build_file_proto_mode = "disable_global",
2107
2107
-
importpath = "cloud.google.com/go/networksecurity",
2108
2108
-
sum = "h1:sOc42Ig1K2LiKlzG71GUVloeSJ0J3mffEBYmvu+P0eo=",
2109
2109
-
version = "v0.8.0",
2110
2110
-
)
2111
2111
-
go_repository(
2112
2112
-
name = "com_google_cloud_go_notebooks",
2113
2113
-
build_file_proto_mode = "disable_global",
2114
2114
-
importpath = "cloud.google.com/go/notebooks",
2115
2115
-
sum = "h1:Kg2K3K7CbSXYJHZ1aGQpf1xi5x2GUvQWf2sFVuiZh8M=",
2116
2116
-
version = "v1.8.0",
2117
2117
-
)
2118
2118
-
go_repository(
2119
2119
-
name = "com_google_cloud_go_optimization",
2120
2120
-
build_file_proto_mode = "disable_global",
2121
2121
-
importpath = "cloud.google.com/go/optimization",
2122
2122
-
sum = "h1:dj8O4VOJRB4CUwZXdmwNViH1OtI0WtWL867/lnYH248=",
2123
2123
-
version = "v1.3.1",
2124
2124
-
)
2125
2125
-
go_repository(
2126
2126
-
name = "com_google_cloud_go_orchestration",
2127
2127
-
build_file_proto_mode = "disable_global",
2128
2128
-
importpath = "cloud.google.com/go/orchestration",
2129
2129
-
sum = "h1:Vw+CEXo8M/FZ1rb4EjcLv0gJqqw89b7+g+C/EmniTb8=",
2130
2130
-
version = "v1.6.0",
2131
2131
-
)
2132
2132
-
go_repository(
2133
2133
-
name = "com_google_cloud_go_orgpolicy",
2134
2134
-
build_file_proto_mode = "disable_global",
2135
2135
-
importpath = "cloud.google.com/go/orgpolicy",
2136
2136
-
sum = "h1:XDriMWug7sd0kYT1QKofRpRHzjad0bK8Q8uA9q+XrU4=",
2137
2137
-
version = "v1.10.0",
2138
2138
-
)
2139
2139
-
go_repository(
2140
2140
-
name = "com_google_cloud_go_osconfig",
2141
2141
-
build_file_proto_mode = "disable_global",
2142
2142
-
importpath = "cloud.google.com/go/osconfig",
2143
2143
-
sum = "h1:PkSQx4OHit5xz2bNyr11KGcaFccL5oqglFPdTboyqwQ=",
2144
2144
-
version = "v1.11.0",
2145
2145
-
)
2146
2146
-
go_repository(
2147
2147
-
name = "com_google_cloud_go_oslogin",
2148
2148
-
build_file_proto_mode = "disable_global",
2149
2149
-
importpath = "cloud.google.com/go/oslogin",
2150
2150
-
sum = "h1:whP7vhpmc+ufZa90eVpkfbgzJRK/Xomjz+XCD4aGwWw=",
2151
2151
-
version = "v1.9.0",
2152
2152
-
)
2153
2153
-
go_repository(
2154
2154
-
name = "com_google_cloud_go_phishingprotection",
2155
2155
-
build_file_proto_mode = "disable_global",
2156
2156
-
importpath = "cloud.google.com/go/phishingprotection",
2157
2157
-
sum = "h1:l6tDkT7qAEV49MNEJkEJTB6vOO/onbSOcNtAT09HPuA=",
2158
2158
-
version = "v0.7.0",
2159
2159
-
)
2160
2160
-
go_repository(
2161
2161
-
name = "com_google_cloud_go_policytroubleshooter",
2162
2162
-
build_file_proto_mode = "disable_global",
2163
2163
-
importpath = "cloud.google.com/go/policytroubleshooter",
2164
2164
-
sum = "h1:yKAGC4p9O61ttZUswaq9GAn1SZnEzTd0vUYXD7ZBT7Y=",
2165
2165
-
version = "v1.6.0",
2166
2166
-
)
2167
2167
-
go_repository(
2168
2168
-
name = "com_google_cloud_go_privatecatalog",
2169
2169
-
build_file_proto_mode = "disable_global",
2170
2170
-
importpath = "cloud.google.com/go/privatecatalog",
2171
2171
-
sum = "h1:EPEJ1DpEGXLDnmc7mnCAqFmkwUJbIsaLAiLHVOkkwtc=",
2172
2172
-
version = "v0.8.0",
2173
2173
-
)
2174
2174
-
go_repository(
2175
2175
-
name = "com_google_cloud_go_profiler",
2176
2176
-
build_file_proto_mode = "disable_global",
2177
2177
-
importpath = "cloud.google.com/go/profiler",
2178
2178
-
sum = "h1:b5got9Be9Ia0HVvyt7PavWxXEht15B9lWnigdvHtxOc=",
2179
2179
-
version = "v0.3.1",
2180
2180
-
)
2181
2181
-
go_repository(
2182
2182
-
name = "com_google_cloud_go_pubsub",
2183
2183
-
build_file_proto_mode = "disable_global",
2184
2184
-
importpath = "cloud.google.com/go/pubsub",
2185
2185
-
sum = "h1:vCge8m7aUKBJYOgrZp7EsNDf6QMd2CAlXZqWTn3yq6s=",
2186
2186
-
version = "v1.30.0",
2187
2187
-
)
2188
2188
-
go_repository(
2189
2189
-
name = "com_google_cloud_go_pubsublite",
2190
2190
-
build_file_proto_mode = "disable_global",
2191
2191
-
importpath = "cloud.google.com/go/pubsublite",
2192
2192
-
sum = "h1:cb9fsrtpINtETHiJ3ECeaVzrfIVhcGjhhJEjybHXHao=",
2193
2193
-
version = "v1.7.0",
2194
2194
-
)
2195
2195
-
go_repository(
2196
2196
-
name = "com_google_cloud_go_recaptchaenterprise_v2",
2197
2197
-
build_file_proto_mode = "disable_global",
2198
2198
-
importpath = "cloud.google.com/go/recaptchaenterprise/v2",
2199
2199
-
sum = "h1:6iOCujSNJ0YS7oNymI64hXsjGq60T4FK1zdLugxbzvU=",
2200
2200
-
version = "v2.7.0",
2201
2201
-
)
2202
2202
-
go_repository(
2203
2203
-
name = "com_google_cloud_go_recommendationengine",
2204
2204
-
build_file_proto_mode = "disable_global",
2205
2205
-
importpath = "cloud.google.com/go/recommendationengine",
2206
2206
-
sum = "h1:VibRFCwWXrFebEWKHfZAt2kta6pS7Tlimsnms0fjv7k=",
2207
2207
-
version = "v0.7.0",
2208
2208
-
)
2209
2209
-
go_repository(
2210
2210
-
name = "com_google_cloud_go_recommender",
2211
2211
-
build_file_proto_mode = "disable_global",
2212
2212
-
importpath = "cloud.google.com/go/recommender",
2213
2213
-
sum = "h1:ZnFRY5R6zOVk2IDS1Jbv5Bw+DExCI5rFumsTnMXiu/A=",
2214
2214
-
version = "v1.9.0",
2215
2215
-
)
2216
2216
-
go_repository(
2217
2217
-
name = "com_google_cloud_go_redis",
2218
2218
-
build_file_proto_mode = "disable_global",
2219
2219
-
importpath = "cloud.google.com/go/redis",
2220
2220
-
sum = "h1:JoAd3SkeDt3rLFAAxEvw6wV4t+8y4ZzfZcZmddqphQ8=",
2221
2221
-
version = "v1.11.0",
2222
2222
-
)
2223
2223
-
go_repository(
2224
2224
-
name = "com_google_cloud_go_resourcemanager",
2225
2225
-
build_file_proto_mode = "disable_global",
2226
2226
-
importpath = "cloud.google.com/go/resourcemanager",
2227
2227
-
sum = "h1:NRM0p+RJkaQF9Ee9JMnUV9BQ2QBIOq/v8M+Pbv/wmCs=",
2228
2228
-
version = "v1.7.0",
2229
2229
-
)
2230
2230
-
go_repository(
2231
2231
-
name = "com_google_cloud_go_resourcesettings",
2232
2232
-
build_file_proto_mode = "disable_global",
2233
2233
-
importpath = "cloud.google.com/go/resourcesettings",
2234
2234
-
sum = "h1:8Dua37kQt27CCWHm4h/Q1XqCF6ByD7Ouu49xg95qJzI=",
2235
2235
-
version = "v1.5.0",
2236
2236
-
)
2237
2237
-
go_repository(
2238
2238
-
name = "com_google_cloud_go_retail",
2239
2239
-
build_file_proto_mode = "disable_global",
2240
2240
-
importpath = "cloud.google.com/go/retail",
2241
2241
-
sum = "h1:1Dda2OpFNzIb4qWgFZjYlpP7sxX3aLeypKG6A3H4Yys=",
2242
2242
-
version = "v1.12.0",
2243
2243
-
)
2244
2244
-
go_repository(
2245
2245
-
name = "com_google_cloud_go_run",
2246
2246
-
build_file_proto_mode = "disable_global",
2247
2247
-
importpath = "cloud.google.com/go/run",
2248
2248
-
sum = "h1:ydJQo+k+MShYnBfhaRHSZYeD/SQKZzZLAROyfpeD9zw=",
2249
2249
-
version = "v0.9.0",
2250
2250
-
)
2251
2251
-
go_repository(
2252
2252
-
name = "com_google_cloud_go_scheduler",
2253
2253
-
build_file_proto_mode = "disable_global",
2254
2254
-
importpath = "cloud.google.com/go/scheduler",
2255
2255
-
sum = "h1:NpQAHtx3sulByTLe2dMwWmah8PWgeoieFPpJpArwFV0=",
2256
2256
-
version = "v1.9.0",
2257
2257
-
)
2258
2258
-
go_repository(
2259
2259
-
name = "com_google_cloud_go_secretmanager",
2260
2260
-
build_file_proto_mode = "disable_global",
2261
2261
-
importpath = "cloud.google.com/go/secretmanager",
2262
2262
-
sum = "h1:pu03bha7ukxF8otyPKTFdDz+rr9sE3YauS5PliDXK60=",
2263
2263
-
version = "v1.10.0",
2264
2264
-
)
2265
2265
-
go_repository(
2266
2266
-
name = "com_google_cloud_go_security",
2267
2267
-
build_file_proto_mode = "disable_global",
2268
2268
-
importpath = "cloud.google.com/go/security",
2269
2269
-
sum = "h1:PYvDxopRQBfYAXKAuDpFCKBvDOWPWzp9k/H5nB3ud3o=",
2270
2270
-
version = "v1.13.0",
2271
2271
-
)
2272
2272
-
go_repository(
2273
2273
-
name = "com_google_cloud_go_securitycenter",
2274
2274
-
build_file_proto_mode = "disable_global",
2275
2275
-
importpath = "cloud.google.com/go/securitycenter",
2276
2276
-
sum = "h1:AF3c2s3awNTMoBtMX3oCUoOMmGlYxGOeuXSYHNBkf14=",
2277
2277
-
version = "v1.19.0",
2278
2278
-
)
2279
2279
-
2280
2280
-
go_repository(
2281
2281
-
name = "com_google_cloud_go_servicedirectory",
2282
2282
-
build_file_proto_mode = "disable_global",
2283
2283
-
importpath = "cloud.google.com/go/servicedirectory",
2284
2284
-
sum = "h1:SJwk0XX2e26o25ObYUORXx6torSFiYgsGkWSkZgkoSU=",
2285
2285
-
version = "v1.9.0",
2286
2286
-
)
2287
2287
-
2288
2288
-
go_repository(
2289
2289
-
name = "com_google_cloud_go_shell",
2290
2290
-
build_file_proto_mode = "disable_global",
2291
2291
-
importpath = "cloud.google.com/go/shell",
2292
2292
-
sum = "h1:wT0Uw7ib7+AgZST9eCDygwTJn4+bHMDtZo5fh7kGWDU=",
2293
2293
-
version = "v1.6.0",
2294
2294
-
)
2295
2295
-
go_repository(
2296
2296
-
name = "com_google_cloud_go_spanner",
2297
2297
-
build_file_proto_mode = "disable_global",
2298
2298
-
importpath = "cloud.google.com/go/spanner",
2299
2299
-
sum = "h1:7VdjZ8zj4sHbDw55atp5dfY6kn1j9sam9DRNpPQhqR4=",
2300
2300
-
version = "v1.45.0",
2301
2301
-
)
2302
2302
-
go_repository(
2303
2303
-
name = "com_google_cloud_go_speech",
2304
2304
-
build_file_proto_mode = "disable_global",
2305
2305
-
importpath = "cloud.google.com/go/speech",
2306
2306
-
sum = "h1:JEVoWGNnTF128kNty7T4aG4eqv2z86yiMJPT9Zjp+iw=",
2307
2307
-
version = "v1.15.0",
2308
2308
-
)
2309
2309
-
go_repository(
2310
2310
-
name = "com_google_cloud_go_storage",
2311
2311
-
build_file_proto_mode = "disable_global",
2312
2312
-
importpath = "cloud.google.com/go/storage",
2313
2313
-
sum = "h1:uOdMxAs8HExqBlnLtnQyP0YkvbiDpdGShGKtx6U/oNM=",
2314
2314
-
version = "v1.30.1",
2315
2315
-
)
2316
2316
-
go_repository(
2317
2317
-
name = "com_google_cloud_go_storagetransfer",
2318
2318
-
build_file_proto_mode = "disable_global",
2319
2319
-
importpath = "cloud.google.com/go/storagetransfer",
2320
2320
-
sum = "h1:5T+PM+3ECU3EY2y9Brv0Sf3oka8pKmsCfpQ07+91G9o=",
2321
2321
-
version = "v1.8.0",
2322
2322
-
)
2323
2323
-
go_repository(
2324
2324
-
name = "com_google_cloud_go_talent",
2325
2325
-
build_file_proto_mode = "disable_global",
2326
2326
-
importpath = "cloud.google.com/go/talent",
2327
2327
-
sum = "h1:nI9sVZPjMKiO2q3Uu0KhTDVov3Xrlpt63fghP9XjyEM=",
2328
2328
-
version = "v1.5.0",
2329
2329
-
)
2330
2330
-
go_repository(
2331
2331
-
name = "com_google_cloud_go_texttospeech",
2332
2332
-
build_file_proto_mode = "disable_global",
2333
2333
-
importpath = "cloud.google.com/go/texttospeech",
2334
2334
-
sum = "h1:H4g1ULStsbVtalbZGktyzXzw6jP26RjVGYx9RaYjBzc=",
2335
2335
-
version = "v1.6.0",
2336
2336
-
)
2337
2337
-
go_repository(
2338
2338
-
name = "com_google_cloud_go_tpu",
2339
2339
-
build_file_proto_mode = "disable_global",
2340
2340
-
importpath = "cloud.google.com/go/tpu",
2341
2341
-
sum = "h1:/34T6CbSi+kTv5E19Q9zbU/ix8IviInZpzwz3rsFE+A=",
2342
2342
-
version = "v1.5.0",
2343
2343
-
)
2344
2344
-
go_repository(
2345
2345
-
name = "com_google_cloud_go_trace",
2346
2346
-
build_file_proto_mode = "disable_global",
2347
2347
-
importpath = "cloud.google.com/go/trace",
2348
2348
-
sum = "h1:olxC0QHC59zgJVALtgqfD9tGk0lfeCP5/AGXL3Px/no=",
2349
2349
-
version = "v1.9.0",
2350
2350
-
)
2351
2351
-
go_repository(
2352
2352
-
name = "com_google_cloud_go_translate",
2353
2353
-
build_file_proto_mode = "disable_global",
2354
2354
-
importpath = "cloud.google.com/go/translate",
2355
2355
-
sum = "h1:GvLP4oQ4uPdChBmBaUSa/SaZxCdyWELtlAaKzpHsXdA=",
2356
2356
-
version = "v1.7.0",
2357
2357
-
)
2358
2358
-
go_repository(
2359
2359
-
name = "com_google_cloud_go_video",
2360
2360
-
build_file_proto_mode = "disable_global",
2361
2361
-
importpath = "cloud.google.com/go/video",
2362
2362
-
sum = "h1:upIbnGI0ZgACm58HPjAeBMleW3sl5cT84AbYQ8PWOgM=",
2363
2363
-
version = "v1.15.0",
2364
2364
-
)
2365
2365
-
go_repository(
2366
2366
-
name = "com_google_cloud_go_videointelligence",
2367
2367
-
build_file_proto_mode = "disable_global",
2368
2368
-
importpath = "cloud.google.com/go/videointelligence",
2369
2369
-
sum = "h1:Uh5BdoET8XXqXX2uXIahGb+wTKbLkGH7s4GXR58RrG8=",
2370
2370
-
version = "v1.10.0",
2371
2371
-
)
2372
2372
-
go_repository(
2373
2373
-
name = "com_google_cloud_go_vision_v2",
2374
2374
-
build_file_proto_mode = "disable_global",
2375
2375
-
importpath = "cloud.google.com/go/vision/v2",
2376
2376
-
sum = "h1:8C8RXUJoflCI4yVdqhTy9tRyygSHmp60aP363z23HKg=",
2377
2377
-
version = "v2.7.0",
2378
2378
-
)
2379
2379
-
go_repository(
2380
2380
-
name = "com_google_cloud_go_vmmigration",
2381
2381
-
build_file_proto_mode = "disable_global",
2382
2382
-
importpath = "cloud.google.com/go/vmmigration",
2383
2383
-
sum = "h1:Azs5WKtfOC8pxvkyrDvt7J0/4DYBch0cVbuFfCCFt5k=",
2384
2384
-
version = "v1.6.0",
2385
2385
-
)
2386
2386
-
go_repository(
2387
2387
-
name = "com_google_cloud_go_vmwareengine",
2388
2388
-
build_file_proto_mode = "disable_global",
2389
2389
-
importpath = "cloud.google.com/go/vmwareengine",
2390
2390
-
sum = "h1:b0NBu7S294l0gmtrT0nOJneMYgZapr5x9tVWvgDoVEM=",
2391
2391
-
version = "v0.3.0",
2392
2392
-
)
2393
2393
-
go_repository(
2394
2394
-
name = "com_google_cloud_go_vpcaccess",
2395
2395
-
build_file_proto_mode = "disable_global",
2396
2396
-
importpath = "cloud.google.com/go/vpcaccess",
2397
2397
-
sum = "h1:FOe6CuiQD3BhHJWt7E8QlbBcaIzVRddupwJlp7eqmn4=",
2398
2398
-
version = "v1.6.0",
2399
2399
-
)
2400
2400
-
go_repository(
2401
2401
-
name = "com_google_cloud_go_webrisk",
2402
2402
-
build_file_proto_mode = "disable_global",
2403
2403
-
importpath = "cloud.google.com/go/webrisk",
2404
2404
-
sum = "h1:IY+L2+UwxcVm2zayMAtBhZleecdIFLiC+QJMzgb0kT0=",
2405
2405
-
version = "v1.8.0",
2406
2406
-
)
2407
2407
-
go_repository(
2408
2408
-
name = "com_google_cloud_go_websecurityscanner",
2409
2409
-
build_file_proto_mode = "disable_global",
2410
2410
-
importpath = "cloud.google.com/go/websecurityscanner",
2411
2411
-
sum = "h1:AHC1xmaNMOZtNqxI9Rmm87IJEyPaRkOxeI0gpAacXGk=",
2412
2412
-
version = "v1.5.0",
2413
2413
-
)
2414
2414
-
go_repository(
2415
2415
-
name = "com_google_cloud_go_workflows",
2416
2416
-
build_file_proto_mode = "disable_global",
2417
2417
-
importpath = "cloud.google.com/go/workflows",
2418
2418
-
sum = "h1:FfGp9w0cYnaKZJhUOMqCOJCYT/WlvYBfTQhFWV3sRKI=",
2419
2419
-
version = "v1.10.0",
2420
2420
-
)
2421
2421
-
go_repository(
2422
2422
-
name = "com_shuralyov_dmitri_gpu_mtl",
2423
2423
-
build_file_proto_mode = "disable_global",
2424
2424
-
importpath = "dmitri.shuralyov.com/gpu/mtl",
2425
2425
-
sum = "h1:VpgP7xuJadIUuKccphEpTJnWhS2jkQyMt6Y7pJCD7fY=",
2426
2426
-
version = "v0.0.0-20190408044501-666a987793e9",
2427
2427
-
)
2428
2428
-
go_repository(
2429
2429
-
name = "dev_bobheadxi_go_streamline",
2430
2430
-
build_file_proto_mode = "disable_global",
2431
2431
-
importpath = "go.bobheadxi.dev/streamline",
2432
2432
-
sum = "h1:Mv2NE8svJMB5K7nIT9WGwF014yuY/lPXtT8mvNr1OrU=",
2433
2433
-
version = "v1.2.2",
2434
2434
-
)
2435
2435
-
2436
2436
-
go_repository(
2437
2437
-
name = "in_gopkg_check_v1",
2438
2438
-
build_file_proto_mode = "disable_global",
2439
2439
-
importpath = "gopkg.in/check.v1",
2440
2440
-
sum = "h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=",
2441
2441
-
version = "v1.0.0-20201130134442-10cb98267c6c",
2442
2442
-
)
2443
2443
-
2444
2444
-
go_repository(
2445
2445
-
name = "in_gopkg_ini_v1",
2446
2446
-
build_file_proto_mode = "disable_global",
2447
2447
-
importpath = "gopkg.in/ini.v1",
2448
2448
-
sum = "h1:Dgnx+6+nfE+IfzjUEISNeydPJh9AXNNsWbGP9KzCsOA=",
2449
2449
-
version = "v1.67.0",
2450
2450
-
)
2451
2451
-
2452
2452
-
go_repository(
2453
2453
-
name = "in_gopkg_natefinch_lumberjack_v2",
2454
2454
-
build_file_proto_mode = "disable_global",
2455
2455
-
importpath = "gopkg.in/natefinch/lumberjack.v2",
2456
2456
-
sum = "h1:bBRl1b0OH9s/DuPhuXpNl+VtCaJXFZ5/uEFST95x9zc=",
2457
2457
-
version = "v2.2.1",
2458
2458
-
)
2459
2459
-
2460
2460
-
go_repository(
2461
2461
-
name = "in_gopkg_warnings_v0",
2462
2462
-
build_file_proto_mode = "disable_global",
2463
2463
-
importpath = "gopkg.in/warnings.v0",
2464
2464
-
sum = "h1:wFXVbFY8DY5/xOe1ECiWdKCzZlxgshcYVNkBHstARME=",
2465
2465
-
version = "v0.1.2",
2466
2466
-
)
2467
2467
-
go_repository(
2468
2468
-
name = "in_gopkg_yaml_v2",
2469
2469
-
build_file_proto_mode = "disable_global",
2470
2470
-
importpath = "gopkg.in/yaml.v2",
2471
2471
-
sum = "h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=",
2472
2472
-
version = "v2.4.0",
2473
2473
-
)
2474
2474
-
go_repository(
2475
2475
-
name = "in_gopkg_yaml_v3",
2476
2476
-
build_file_proto_mode = "disable_global",
2477
2477
-
importpath = "gopkg.in/yaml.v3",
2478
2478
-
sum = "h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=",
2479
2479
-
version = "v3.0.1",
2480
2480
-
)
2481
2481
-
go_repository(
2482
2482
-
name = "io_opencensus_go",
2483
2483
-
build_file_proto_mode = "disable_global",
2484
2484
-
importpath = "go.opencensus.io",
2485
2485
-
sum = "h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0=",
2486
2486
-
version = "v0.24.0",
2487
2487
-
)
2488
2488
-
go_repository(
2489
2489
-
name = "io_opentelemetry_go_contrib_instrumentation_google_golang_org_grpc_otelgrpc",
2490
2490
-
build_file_proto_mode = "disable_global",
2491
2491
-
importpath = "go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc",
2492
2492
-
sum = "h1:ZOLJc06r4CB42laIXg/7udr0pbZyuAihN10A/XuiQRY=",
2493
2493
-
version = "v0.42.0",
2494
2494
-
)
2495
2495
-
2496
2496
-
go_repository(
2497
2497
-
name = "io_opentelemetry_go_contrib_propagators_jaeger",
2498
2498
-
build_file_proto_mode = "disable_global",
2499
2499
-
importpath = "go.opentelemetry.io/contrib/propagators/jaeger",
2500
2500
-
sum = "h1:Zbpbmwav32Ea5jSotpmkWEl3a6Xvd4tw/3xxGO1i05Y=",
2501
2501
-
version = "v1.17.0",
2502
2502
-
)
2503
2503
-
go_repository(
2504
2504
-
name = "io_opentelemetry_go_contrib_propagators_ot",
2505
2505
-
build_file_proto_mode = "disable_global",
2506
2506
-
importpath = "go.opentelemetry.io/contrib/propagators/ot",
2507
2507
-
sum = "h1:ufo2Vsz8l76eI47jFjuVyjyB3Ae2DmfiCV/o6Vc8ii0=",
2508
2508
-
version = "v1.17.0",
2509
2509
-
)
2510
2510
-
go_repository(
2511
2511
-
name = "io_opentelemetry_go_otel",
2512
2512
-
build_file_proto_mode = "disable_global",
2513
2513
-
importpath = "go.opentelemetry.io/otel",
2514
2514
-
sum = "h1:Z7GVAX/UkAXPKsy94IU+i6thsQS4nb7LviLpnaNeW8s=",
2515
2515
-
version = "v1.16.0",
2516
2516
-
)
2517
2517
-
go_repository(
2518
2518
-
name = "io_opentelemetry_go_otel_bridge_opentracing",
2519
2519
-
build_file_proto_mode = "disable_global",
2520
2520
-
importpath = "go.opentelemetry.io/otel/bridge/opentracing",
2521
2521
-
sum = "h1:Bgwi7P5NCV3bv2T13bwG0WfsxaT4SjQ1rDdmFc5P7do=",
2522
2522
-
version = "v1.16.0",
2523
2523
-
)
2524
2524
-
go_repository(
2525
2525
-
name = "io_opentelemetry_go_otel_exporters_otlp_internal_retry",
2526
2526
-
build_file_proto_mode = "disable_global",
2527
2527
-
importpath = "go.opentelemetry.io/otel/exporters/otlp/internal/retry",
2528
2528
-
sum = "h1:t4ZwRPU+emrcvM2e9DHd0Fsf0JTPVcbfa/BhTDF03d0=",
2529
2529
-
version = "v1.16.0",
2530
2530
-
)
2531
2531
-
go_repository(
2532
2532
-
name = "io_opentelemetry_go_otel_exporters_otlp_otlptrace",
2533
2533
-
build_file_proto_mode = "disable_global",
2534
2534
-
importpath = "go.opentelemetry.io/otel/exporters/otlp/otlptrace",
2535
2535
-
sum = "h1:cbsD4cUcviQGXdw8+bo5x2wazq10SKz8hEbtCRPcU78=",
2536
2536
-
version = "v1.16.0",
2537
2537
-
)
2538
2538
-
go_repository(
2539
2539
-
name = "io_opentelemetry_go_otel_exporters_otlp_otlptrace_otlptracegrpc",
2540
2540
-
build_file_proto_mode = "disable_global",
2541
2541
-
importpath = "go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc",
2542
2542
-
sum = "h1:TVQp/bboR4mhZSav+MdgXB8FaRho1RC8UwVn3T0vjVc=",
2543
2543
-
version = "v1.16.0",
2544
2544
-
)
2545
2545
-
go_repository(
2546
2546
-
name = "io_opentelemetry_go_otel_exporters_otlp_otlptrace_otlptracehttp",
2547
2547
-
build_file_proto_mode = "disable_global",
2548
2548
-
importpath = "go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp",
2549
2549
-
sum = "h1:iqjq9LAB8aK++sKVcELezzn655JnBNdsDhghU4G/So8=",
2550
2550
-
version = "v1.16.0",
2551
2551
-
)
2552
2552
-
go_repository(
2553
2553
-
name = "io_opentelemetry_go_otel_metric",
2554
2554
-
build_file_proto_mode = "disable_global",
2555
2555
-
importpath = "go.opentelemetry.io/otel/metric",
2556
2556
-
sum = "h1:RbrpwVG1Hfv85LgnZ7+txXioPDoh6EdbZHo26Q3hqOo=",
2557
2557
-
version = "v1.16.0",
2558
2558
-
)
2559
2559
-
2560
2560
-
go_repository(
2561
2561
-
name = "io_opentelemetry_go_otel_sdk",
2562
2562
-
build_file_proto_mode = "disable_global",
2563
2563
-
importpath = "go.opentelemetry.io/otel/sdk",
2564
2564
-
sum = "h1:Z1Ok1YsijYL0CSJpHt4cS3wDDh7p572grzNrBMiMWgE=",
2565
2565
-
version = "v1.16.0",
2566
2566
-
)
2567
2567
-
go_repository(
2568
2568
-
name = "io_opentelemetry_go_otel_trace",
2569
2569
-
build_file_proto_mode = "disable_global",
2570
2570
-
importpath = "go.opentelemetry.io/otel/trace",
2571
2571
-
sum = "h1:8JRpaObFoW0pxuVPapkgH8UhHQj+bJW8jJsCZEu5MQs=",
2572
2572
-
version = "v1.16.0",
2573
2573
-
)
2574
2574
-
go_repository(
2575
2575
-
name = "io_opentelemetry_go_proto_otlp",
2576
2576
-
build_file_proto_mode = "disable_global",
2577
2577
-
importpath = "go.opentelemetry.io/proto/otlp",
2578
2578
-
sum = "h1:BLOA1cZBAGSbRiNuGCCKiFrCdYB7deeHDeD1SueyOfA=",
2579
2579
-
version = "v0.20.0",
2580
2580
-
)
2581
2581
-
2582
2582
-
go_repository(
2583
2583
-
name = "io_rsc_pdf",
2584
2584
-
build_file_proto_mode = "disable_global",
2585
2585
-
importpath = "rsc.io/pdf",
2586
2586
-
sum = "h1:k1MczvYDUvJBe93bYd7wrZLLUEcLZAuF824/I4e5Xr4=",
2587
2587
-
version = "v0.1.1",
2588
2588
-
)
2589
2589
-
2590
2590
-
go_repository(
2591
2591
-
name = "org_golang_google_api",
2592
2592
-
build_file_proto_mode = "disable_global",
2593
2593
-
importpath = "google.golang.org/api",
2594
2594
-
sum = "h1:2XbdjjNfFPXQyufzQVwPf1RRnHH8Den2pfNE2jw7L8w=",
2595
2595
-
version = "v0.129.0",
2596
2596
-
)
2597
2597
-
go_repository(
2598
2598
-
name = "org_golang_google_appengine",
2599
2599
-
build_file_proto_mode = "disable_global",
2600
2600
-
importpath = "google.golang.org/appengine",
2601
2601
-
sum = "h1:FZR1q0exgwxzPzp/aF+VccGrSfxfPpkBqjIIEq3ru6c=",
2602
2602
-
version = "v1.6.7",
2603
2603
-
)
2604
2604
-
go_repository(
2605
2605
-
name = "org_golang_google_genproto",
2606
2606
-
build_file_proto_mode = "disable_global",
2607
2607
-
importpath = "google.golang.org/genproto",
2608
2608
-
sum = "h1:Wdfp5Hc1bqGCWYZNrir4A1Jb+SmVaV2j1DL/pbMMTGI=",
2609
2609
-
version = "v0.0.0-20230628200519-e449d1ea0e82",
2610
2610
-
)
2611
2611
-
go_repository(
2612
2612
-
name = "org_golang_google_genproto_googleapis_api",
2613
2613
-
build_file_proto_mode = "disable_global",
2614
2614
-
importpath = "google.golang.org/genproto/googleapis/api",
2615
2615
-
sum = "h1:iI5Fmsfz4zDINYxJLxn2YChI//ypkHM/KuVSvlN7ZXk=",
2616
2616
-
version = "v0.0.0-20230628200519-e449d1ea0e82",
2617
2617
-
)
2618
2618
-
go_repository(
2619
2619
-
name = "org_golang_google_genproto_googleapis_bytestream",
2620
2620
-
build_file_proto_mode = "disable_global",
2621
2621
-
importpath = "google.golang.org/genproto/googleapis/bytestream",
2622
2622
-
sum = "h1:g3hIDl0jRNd9PPTs2uBzYuaD5mQuwOkZY0vSc0LR32o=",
2623
2623
-
version = "v0.0.0-20230530153820-e85fd2cbaebc",
2624
2624
-
)
2625
2625
-
go_repository(
2626
2626
-
name = "org_golang_google_genproto_googleapis_rpc",
2627
2627
-
build_file_proto_mode = "disable_global",
2628
2628
-
importpath = "google.golang.org/genproto/googleapis/rpc",
2629
2629
-
sum = "h1:6b+zGQBiXFlAMpQr+cCarAdrZD4QgXSG7uUZadYysgg=",
2630
2630
-
version = "v0.0.0-20230628200519-e449d1ea0e82",
2631
2631
-
)
2632
2632
-
2633
2633
-
go_repository(
2634
2634
-
name = "org_golang_google_grpc",
2635
2635
-
build_file_proto_mode = "disable_global",
2636
2636
-
importpath = "google.golang.org/grpc",
2637
2637
-
sum = "h1:z0dNfjIl0VpaZ9iSVjA6daGatAYwPGstTjt5vkRMFkQ=",
2638
2638
-
version = "v1.56.1",
2639
2639
-
)
2640
2640
-
go_repository(
2641
2641
-
name = "org_golang_google_protobuf",
2642
2642
-
build_file_proto_mode = "disable_global",
2643
2643
-
importpath = "google.golang.org/protobuf",
2644
2644
-
sum = "h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8=",
2645
2645
-
version = "v1.31.0",
2646
2646
-
)
2647
2647
-
go_repository(
2648
2648
-
name = "org_golang_x_crypto",
2649
2649
-
build_file_proto_mode = "disable_global",
2650
2650
-
importpath = "golang.org/x/crypto",
2651
2651
-
sum = "h1:LKqV2xt9+kDzSTfOhx4FrkEBcMrAgHSYgzywV9zcGmM=",
2652
2652
-
version = "v0.10.0",
2653
2653
-
)
2654
2654
-
go_repository(
2655
2655
-
name = "org_golang_x_exp",
2656
2656
-
build_file_proto_mode = "disable_global",
2657
2657
-
importpath = "golang.org/x/exp",
2658
2658
-
sum = "h1:MGwJjxBy0HJshjDNfLsYO8xppfqWlA5ZT9OhtUUhTNw=",
2659
2659
-
version = "v0.0.0-20230713183714-613f0c0eb8a1",
2660
2660
-
)
2661
2661
-
go_repository(
2662
2662
-
name = "org_golang_x_image",
2663
2663
-
build_file_proto_mode = "disable_global",
2664
2664
-
importpath = "golang.org/x/image",
2665
2665
-
sum = "h1:+qEpEAPhDZ1o0x3tHzZTQDArnOixOzGD9HUJfcg0mb4=",
2666
2666
-
version = "v0.0.0-20190802002840-cff245a6509b",
2667
2667
-
)
2668
2668
-
go_repository(
2669
2669
-
name = "org_golang_x_lint",
2670
2670
-
build_file_proto_mode = "disable_global",
2671
2671
-
importpath = "golang.org/x/lint",
2672
2672
-
sum = "h1:XQyxROzUlZH+WIQwySDgnISgOivlhjIEwaQaJEJrrN0=",
2673
2673
-
version = "v0.0.0-20190313153728-d0100b6bd8b3",
2674
2674
-
)
2675
2675
-
go_repository(
2676
2676
-
name = "org_golang_x_mobile",
2677
2677
-
build_file_proto_mode = "disable_global",
2678
2678
-
importpath = "golang.org/x/mobile",
2679
2679
-
sum = "h1:4+4C/Iv2U4fMZBiMCc98MG1In4gJY5YRhtpDNeDeHWs=",
2680
2680
-
version = "v0.0.0-20190719004257-d2bd2a29d028",
2681
2681
-
)
2682
2682
-
go_repository(
2683
2683
-
name = "org_golang_x_mod",
2684
2684
-
build_file_proto_mode = "disable_global",
2685
2685
-
importpath = "golang.org/x/mod",
2686
2686
-
sum = "h1:bUO06HqtnRcc/7l71XBe4WcqTZ+3AH1J59zWDDwLKgU=",
2687
2687
-
version = "v0.11.0",
2688
2688
-
)
2689
2689
-
go_repository(
2690
2690
-
name = "org_golang_x_net",
2691
2691
-
build_file_proto_mode = "disable_global",
2692
2692
-
importpath = "golang.org/x/net",
2693
2693
-
sum = "h1:Gi2tvZIJyBtO9SDr1q9h5hEQCp/4L2RQ+ar0qjx2oNU=",
2694
2694
-
version = "v0.11.0",
2695
2695
-
)
2696
2696
-
go_repository(
2697
2697
-
name = "org_golang_x_oauth2",
2698
2698
-
build_file_proto_mode = "disable_global",
2699
2699
-
importpath = "golang.org/x/oauth2",
2700
2700
-
sum = "h1:BPpt2kU7oMRq3kCHAA1tbSEshXRw1LpG2ztgDwrzuAs=",
2701
2701
-
version = "v0.9.0",
2702
2702
-
)
2703
2703
-
go_repository(
2704
2704
-
name = "org_golang_x_sync",
2705
2705
-
build_file_proto_mode = "disable_global",
2706
2706
-
importpath = "golang.org/x/sync",
2707
2707
-
sum = "h1:ftCYgMx6zT/asHUrPw8BLLscYtGznsLAnjq5RH9P66E=",
2708
2708
-
version = "v0.3.0",
2709
2709
-
)
2710
2710
-
go_repository(
2711
2711
-
name = "org_golang_x_sys",
2712
2712
-
build_file_proto_mode = "disable_global",
2713
2713
-
importpath = "golang.org/x/sys",
2714
2714
-
sum = "h1:KS/R3tvhPqvJvwcKfnBHJwwthS11LRhmM5D59eEXa0s=",
2715
2715
-
version = "v0.9.0",
2716
2716
-
)
2717
2717
-
go_repository(
2718
2718
-
name = "org_golang_x_term",
2719
2719
-
build_file_proto_mode = "disable_global",
2720
2720
-
importpath = "golang.org/x/term",
2721
2721
-
sum = "h1:GRRCnKYhdQrD8kfRAdQ6Zcw1P0OcELxGLKJvtjVMZ28=",
2722
2722
-
version = "v0.9.0",
2723
2723
-
)
2724
2724
-
go_repository(
2725
2725
-
name = "org_golang_x_text",
2726
2726
-
build_file_proto_mode = "disable_global",
2727
2727
-
importpath = "golang.org/x/text",
2728
2728
-
sum = "h1:UpjohKhiEgNc0CSauXmwYftY1+LlaC75SJwh0SgCX58=",
2729
2729
-
version = "v0.10.0",
2730
2730
-
)
2731
2731
-
go_repository(
2732
2732
-
name = "org_golang_x_time",
2733
2733
-
build_file_proto_mode = "disable_global",
2734
2734
-
importpath = "golang.org/x/time",
2735
2735
-
sum = "h1:rg5rLMjNzMS1RkNLzCG38eapWhnYLFYXDXj2gOlr8j4=",
2736
2736
-
version = "v0.3.0",
2737
2737
-
)
2738
2738
-
go_repository(
2739
2739
-
name = "org_golang_x_tools",
2740
2740
-
build_file_proto_mode = "disable_global",
2741
2741
-
importpath = "golang.org/x/tools",
2742
2742
-
sum = "h1:tvDr/iQoUqNdohiYm0LmmKcBk+q86lb9EprIUFhHHGg=",
2743
2743
-
version = "v0.10.0",
2744
2744
-
)
2745
2745
-
go_repository(
2746
2746
-
name = "org_golang_x_xerrors",
2747
2747
-
build_file_proto_mode = "disable_global",
2748
2748
-
importpath = "golang.org/x/xerrors",
2749
2749
-
sum = "h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk=",
2750
2750
-
version = "v0.0.0-20220907171357-04be3eba64a2",
2751
2751
-
)
2752
2752
-
go_repository(
2753
2753
-
name = "org_gonum_v1_gonum",
2754
2754
-
build_file_proto_mode = "disable_global",
2755
2755
-
importpath = "gonum.org/v1/gonum",
2756
2756
-
sum = "h1:CCXrcPKiGGotvnN6jfUsKk4rRqm7q09/YbKb5xCEvtM=",
2757
2757
-
version = "v0.8.2",
2758
2758
-
)
2759
2759
-
go_repository(
2760
2760
-
name = "org_gonum_v1_netlib",
2761
2761
-
build_file_proto_mode = "disable_global",
2762
2762
-
importpath = "gonum.org/v1/netlib",
2763
2763
-
sum = "h1:OE9mWmgKkjJyEmDAAtGMPjXu+YNeGvK9VTSHY6+Qihc=",
2764
2764
-
version = "v0.0.0-20190313105609-8cb42192e0e0",
2765
2765
-
)
2766
2766
-
go_repository(
2767
2767
-
name = "org_gonum_v1_plot",
2768
2768
-
build_file_proto_mode = "disable_global",
2769
2769
-
importpath = "gonum.org/v1/plot",
2770
2770
-
sum = "h1:Qh4dB5D/WpoUUp3lSod7qgoyEHbDGPUWjIbnqdqqe1k=",
2771
2771
-
version = "v0.0.0-20190515093506-e2840ee46a6b",
2772
2772
-
)
2773
2773
-
go_repository(
2774
2774
-
name = "org_uber_go_atomic",
2775
2775
-
build_file_proto_mode = "disable_global",
2776
2776
-
importpath = "go.uber.org/atomic",
2777
2777
-
sum = "h1:ZvwS0R+56ePWxUNi+Atn9dWONBPp/AUETXlHW0DxSjE=",
2778
2778
-
version = "v1.11.0",
2779
2779
-
)
2780
2780
-
go_repository(
2781
2781
-
name = "org_uber_go_automaxprocs",
2782
2782
-
build_file_proto_mode = "disable_global",
2783
2783
-
importpath = "go.uber.org/automaxprocs",
2784
2784
-
sum = "h1:2LxUOGiR3O6tw8ui5sZa2LAaHnsviZdVOUZw4fvbnME=",
2785
2785
-
version = "v1.5.2",
2786
2786
-
)
2787
2787
-
go_repository(
2788
2788
-
name = "org_uber_go_goleak",
2789
2789
-
build_file_proto_mode = "disable_global",
2790
2790
-
importpath = "go.uber.org/goleak",
2791
2791
-
sum = "h1:NBol2c7O1ZokfZ0LEU9K6Whx/KnwvepVetCUhtKja4A=",
2792
2792
-
version = "v1.2.1",
2793
2793
-
)
2794
2794
-
go_repository(
2795
2795
-
name = "org_uber_go_multierr",
2796
2796
-
build_file_proto_mode = "disable_global",
2797
2797
-
importpath = "go.uber.org/multierr",
2798
2798
-
sum = "h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0=",
2799
2799
-
version = "v1.11.0",
2800
2800
-
)
2801
2801
-
go_repository(
2802
2802
-
name = "org_uber_go_zap",
2803
2803
-
build_file_proto_mode = "disable_global",
2804
2804
-
importpath = "go.uber.org/zap",
2805
2805
-
sum = "h1:FiJd5l1UOLj0wCgbSE0rwwXHzEdAZS6hiiSnxJN/D60=",
2806
2806
-
version = "v1.24.0",
2807
2807
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
2
-
3
3
-
go_library(
4
4
-
name = "gitindex",
5
5
-
srcs = [
6
6
-
"clone.go",
7
7
-
"delete.go",
8
8
-
"filter.go",
9
9
-
"index.go",
10
10
-
"repocache.go",
11
11
-
"submodule.go",
12
12
-
"tree.go",
13
13
-
],
14
14
-
importpath = "github.com/sourcegraph/zoekt/gitindex",
15
15
-
visibility = ["//visibility:public"],
16
16
-
deps = [
17
17
-
"//:zoekt",
18
18
-
"//build",
19
19
-
"//ignore",
20
20
-
"@com_github_go_git_go_git_v5//:go-git",
21
21
-
"@com_github_go_git_go_git_v5//config",
22
22
-
"@com_github_go_git_go_git_v5//plumbing",
23
23
-
"@com_github_go_git_go_git_v5//plumbing/filemode",
24
24
-
"@com_github_go_git_go_git_v5//plumbing/format/config",
25
25
-
"@com_github_go_git_go_git_v5//plumbing/object",
26
26
-
"@com_github_grafana_regexp//:regexp",
27
27
-
],
28
28
-
)
29
29
-
30
30
-
go_test(
31
31
-
name = "gitindex_test",
32
32
-
srcs = [
33
33
-
"clone_test.go",
34
34
-
"delete_test.go",
35
35
-
"ignore_test.go",
36
36
-
"index_test.go",
37
37
-
"repocache_test.go",
38
38
-
"submodule_test.go",
39
39
-
"tree_test.go",
40
40
-
],
41
41
-
embed = [":gitindex"],
42
42
-
deps = [
43
43
-
"//:zoekt",
44
44
-
"//build",
45
45
-
"//ignore",
46
46
-
"//query",
47
47
-
"//shards",
48
48
-
"@com_github_go_git_go_git_v5//:go-git",
49
49
-
"@com_github_go_git_go_git_v5//plumbing",
50
50
-
"@com_github_google_go_cmp//cmp",
51
51
-
"@com_github_google_go_cmp//cmp/cmpopts",
52
52
-
"@com_github_grafana_regexp//:regexp",
53
53
-
],
54
54
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
2
-
3
3
-
go_library(
4
4
-
name = "grpc",
5
5
-
srcs = ["server.go"],
6
6
-
importpath = "github.com/sourcegraph/zoekt/grpc",
7
7
-
visibility = ["//visibility:public"],
8
8
-
deps = [
9
9
-
"//:zoekt",
10
10
-
"//grpc/v1:grpc",
11
11
-
"//query",
12
12
-
"//stream",
13
13
-
"@org_golang_google_grpc//codes",
14
14
-
"@org_golang_google_grpc//status",
15
15
-
],
16
16
-
)
17
17
-
18
18
-
go_test(
19
19
-
name = "grpc_test",
20
20
-
srcs = ["server_test.go"],
21
21
-
embed = [":grpc"],
22
22
-
deps = [
23
23
-
"//:zoekt",
24
24
-
"//grpc/v1:grpc",
25
25
-
"//internal/mockSearcher",
26
26
-
"//query",
27
27
-
"@org_golang_google_grpc//:go_default_library",
28
28
-
"@org_golang_google_grpc//credentials/insecure",
29
29
-
"@org_golang_google_protobuf//proto",
30
30
-
"@org_golang_x_net//http2",
31
31
-
"@org_golang_x_net//http2/h2c",
32
32
-
],
33
33
-
)
···
1
1
-
load("@rules_proto//proto:defs.bzl", "proto_library")
2
2
-
load("@io_bazel_rules_go//go:def.bzl", "go_library")
3
3
-
load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
4
4
-
5
5
-
proto_library(
6
6
-
name = "v1_proto",
7
7
-
srcs = [
8
8
-
"query.proto",
9
9
-
"webserver.proto",
10
10
-
],
11
11
-
strip_import_prefix = "/grpc/v1",
12
12
-
visibility = ["//visibility:public"],
13
13
-
deps = [
14
14
-
"@com_google_protobuf//:duration_proto",
15
15
-
"@com_google_protobuf//:timestamp_proto",
16
16
-
],
17
17
-
)
18
18
-
19
19
-
go_proto_library(
20
20
-
name = "v1_go_proto",
21
21
-
compilers = ["@io_bazel_rules_go//proto:go_grpc"],
22
22
-
importpath = "github.com/sourcegraph/zoekt/grpc/v1",
23
23
-
proto = ":v1_proto",
24
24
-
visibility = ["//visibility:public"],
25
25
-
)
26
26
-
27
27
-
go_library(
28
28
-
name = "grpc",
29
29
-
embed = [":v1_go_proto"],
30
30
-
importpath = "github.com/sourcegraph/zoekt/grpc/v1",
31
31
-
visibility = ["//visibility:public"],
32
32
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
2
-
3
3
-
go_library(
4
4
-
name = "ignore",
5
5
-
srcs = ["ignore.go"],
6
6
-
importpath = "github.com/sourcegraph/zoekt/ignore",
7
7
-
visibility = ["//visibility:public"],
8
8
-
deps = ["@com_github_gobwas_glob//:glob"],
9
9
-
)
10
10
-
11
11
-
go_test(
12
12
-
name = "ignore_test",
13
13
-
srcs = ["ignore_test.go"],
14
14
-
embed = [":ignore"],
15
15
-
deps = ["@com_github_gobwas_glob//:glob"],
16
16
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
2
-
3
3
-
go_library(
4
4
-
name = "mockSearcher",
5
5
-
srcs = ["mock_searcher.go"],
6
6
-
importpath = "github.com/sourcegraph/zoekt/internal/mockSearcher",
7
7
-
visibility = ["//:__subpackages__"],
8
8
-
deps = [
9
9
-
"//:zoekt",
10
10
-
"//query",
11
11
-
],
12
12
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
2
-
3
3
-
go_library(
4
4
-
name = "otlpenv",
5
5
-
srcs = ["otlpenv.go"],
6
6
-
importpath = "github.com/sourcegraph/zoekt/internal/otlpenv",
7
7
-
visibility = ["//:__subpackages__"],
8
8
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
2
-
3
3
-
go_library(
4
4
-
name = "profiler",
5
5
-
srcs = ["profiler.go"],
6
6
-
importpath = "github.com/sourcegraph/zoekt/internal/profiler",
7
7
-
visibility = ["//:__subpackages__"],
8
8
-
deps = ["@com_google_cloud_go_profiler//:profiler"],
9
9
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
2
-
3
3
-
go_library(
4
4
-
name = "tracer",
5
5
-
srcs = [
6
6
-
"jaeger.go",
7
7
-
"opentelemetry.go",
8
8
-
"tracer.go",
9
9
-
],
10
10
-
importpath = "github.com/sourcegraph/zoekt/internal/tracer",
11
11
-
visibility = ["//:__subpackages__"],
12
12
-
deps = [
13
13
-
"//internal/otlpenv",
14
14
-
"@com_github_opentracing_opentracing_go//:opentracing-go",
15
15
-
"@com_github_pkg_errors//:errors",
16
16
-
"@com_github_sourcegraph_log//:log",
17
17
-
"@com_github_uber_jaeger_client_go//:jaeger-client-go",
18
18
-
"@com_github_uber_jaeger_client_go//config",
19
19
-
"@com_github_uber_jaeger_lib//metrics",
20
20
-
"@io_opentelemetry_go_contrib_propagators_jaeger//:jaeger",
21
21
-
"@io_opentelemetry_go_contrib_propagators_ot//:ot",
22
22
-
"@io_opentelemetry_go_otel//:otel",
23
23
-
"@io_opentelemetry_go_otel//propagation",
24
24
-
"@io_opentelemetry_go_otel//semconv/v1.4.0:v1_4_0",
25
25
-
"@io_opentelemetry_go_otel_bridge_opentracing//:opentracing",
26
26
-
"@io_opentelemetry_go_otel_exporters_otlp_otlptrace//:otlptrace",
27
27
-
"@io_opentelemetry_go_otel_exporters_otlp_otlptrace_otlptracegrpc//:otlptracegrpc",
28
28
-
"@io_opentelemetry_go_otel_exporters_otlp_otlptrace_otlptracehttp//:otlptracehttp",
29
29
-
"@io_opentelemetry_go_otel_sdk//resource",
30
30
-
"@io_opentelemetry_go_otel_sdk//trace",
31
31
-
],
32
32
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
2
-
3
3
-
go_library(
4
4
-
name = "json",
5
5
-
srcs = ["json.go"],
6
6
-
importpath = "github.com/sourcegraph/zoekt/json",
7
7
-
visibility = ["//visibility:public"],
8
8
-
deps = [
9
9
-
"//:zoekt",
10
10
-
"//query",
11
11
-
],
12
12
-
)
13
13
-
14
14
-
go_test(
15
15
-
name = "json_test",
16
16
-
srcs = ["json_test.go"],
17
17
-
deps = [
18
18
-
":json",
19
19
-
"//:zoekt",
20
20
-
"//internal/mockSearcher",
21
21
-
"//query",
22
22
-
],
23
23
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
2
-
3
3
-
go_library(
4
4
-
name = "query",
5
5
-
srcs = [
6
6
-
"bits.go",
7
7
-
"marshal.go",
8
8
-
"parse.go",
9
9
-
"query.go",
10
10
-
"query_proto.go",
11
11
-
"regexp.go",
12
12
-
],
13
13
-
importpath = "github.com/sourcegraph/zoekt/query",
14
14
-
visibility = ["//visibility:public"],
15
15
-
deps = [
16
16
-
"//grpc/v1:grpc",
17
17
-
"@com_github_go_enry_go_enry_v2//:go-enry",
18
18
-
"@com_github_grafana_regexp//:regexp",
19
19
-
"@com_github_roaringbitmap_roaring//:roaring",
20
20
-
],
21
21
-
)
22
22
-
23
23
-
go_test(
24
24
-
name = "query_test",
25
25
-
srcs = [
26
26
-
"marshal_test.go",
27
27
-
"parse_test.go",
28
28
-
"query_proto_test.go",
29
29
-
"query_test.go",
30
30
-
"regexp_test.go",
31
31
-
],
32
32
-
embed = [":query"],
33
33
-
deps = [
34
34
-
"@com_github_google_go_cmp//cmp",
35
35
-
"@com_github_grafana_regexp//:regexp",
36
36
-
"@com_github_roaringbitmap_roaring//:roaring",
37
37
-
],
38
38
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
2
-
3
3
-
go_library(
4
4
-
name = "rpc",
5
5
-
srcs = ["rpc.go"],
6
6
-
importpath = "github.com/sourcegraph/zoekt/rpc",
7
7
-
visibility = ["//visibility:public"],
8
8
-
deps = [
9
9
-
"//:zoekt",
10
10
-
"//query",
11
11
-
"//rpc/internal/srv",
12
12
-
"@com_github_keegancsmith_rpc//:rpc",
13
13
-
],
14
14
-
)
15
15
-
16
16
-
go_test(
17
17
-
name = "rpc_test",
18
18
-
srcs = ["rpc_test.go"],
19
19
-
deps = [
20
20
-
":rpc",
21
21
-
"//:zoekt",
22
22
-
"//internal/mockSearcher",
23
23
-
"//query",
24
24
-
"@com_github_google_go_cmp//cmp",
25
25
-
"@com_github_google_go_cmp//cmp/cmpopts",
26
26
-
],
27
27
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
2
-
3
3
-
go_library(
4
4
-
name = "srv",
5
5
-
srcs = ["srv.go"],
6
6
-
importpath = "github.com/sourcegraph/zoekt/rpc/internal/srv",
7
7
-
visibility = ["//rpc:__subpackages__"],
8
8
-
deps = [
9
9
-
"//:zoekt",
10
10
-
"//query",
11
11
-
],
12
12
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
2
-
3
3
-
go_library(
4
4
-
name = "shards",
5
5
-
srcs = [
6
6
-
"aggregate.go",
7
7
-
"eval.go",
8
8
-
"sched.go",
9
9
-
"shards.go",
10
10
-
"watcher.go",
11
11
-
],
12
12
-
importpath = "github.com/sourcegraph/zoekt/shards",
13
13
-
visibility = ["//visibility:public"],
14
14
-
deps = [
15
15
-
"//:zoekt",
16
16
-
"//query",
17
17
-
"//stream",
18
18
-
"//trace",
19
19
-
"@com_github_fsnotify_fsnotify//:fsnotify",
20
20
-
"@com_github_prometheus_client_golang//prometheus",
21
21
-
"@com_github_prometheus_client_golang//prometheus/promauto",
22
22
-
"@org_golang_x_sync//semaphore",
23
23
-
"@org_uber_go_atomic//:atomic",
24
24
-
],
25
25
-
)
26
26
-
27
27
-
go_test(
28
28
-
name = "shards_test",
29
29
-
srcs = [
30
30
-
"eval_test.go",
31
31
-
"sched_test.go",
32
32
-
"shards_test.go",
33
33
-
"watcher_test.go",
34
34
-
],
35
35
-
embed = [":shards"],
36
36
-
deps = [
37
37
-
"//:zoekt",
38
38
-
"//query",
39
39
-
"//stream",
40
40
-
"@com_github_google_go_cmp//cmp",
41
41
-
"@com_github_google_go_cmp//cmp/cmpopts",
42
42
-
"@com_github_grafana_regexp//:regexp",
43
43
-
"@com_github_roaringbitmap_roaring//:roaring",
44
44
-
],
45
45
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
2
-
3
3
-
go_library(
4
4
-
name = "stream",
5
5
-
srcs = [
6
6
-
"client.go",
7
7
-
"stream.go",
8
8
-
],
9
9
-
importpath = "github.com/sourcegraph/zoekt/stream",
10
10
-
visibility = ["//visibility:public"],
11
11
-
deps = [
12
12
-
"//:zoekt",
13
13
-
"//query",
14
14
-
"//rpc",
15
15
-
],
16
16
-
)
17
17
-
18
18
-
go_test(
19
19
-
name = "stream_test",
20
20
-
srcs = ["stream_test.go"],
21
21
-
embed = [":stream"],
22
22
-
deps = [
23
23
-
"//:zoekt",
24
24
-
"//internal/mockSearcher",
25
25
-
"//query",
26
26
-
"@com_github_google_go_cmp//cmp",
27
27
-
],
28
28
-
)
···
1
1
-
# gazelle:exclude repo
2
2
-
# gazelle:exclude repo2
3
3
-
4
4
-
filegroup(
5
5
-
name = "testdata",
6
6
-
srcs = glob(["**"]),
7
7
-
visibility = ["//visibility:public"],
8
8
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
2
-
3
3
-
go_library(
4
4
-
name = "trace",
5
5
-
srcs = [
6
6
-
"middleware.go",
7
7
-
"opentracing.go",
8
8
-
"trace.go",
9
9
-
],
10
10
-
importpath = "github.com/sourcegraph/zoekt/trace",
11
11
-
visibility = ["//visibility:public"],
12
12
-
deps = [
13
13
-
"@com_github_opentracing_opentracing_go//:opentracing-go",
14
14
-
"@com_github_opentracing_opentracing_go//ext",
15
15
-
"@com_github_opentracing_opentracing_go//log",
16
16
-
"@org_golang_x_net//trace",
17
17
-
],
18
18
-
)
···
1
1
-
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
2
-
3
3
-
go_library(
4
4
-
name = "web",
5
5
-
srcs = [
6
6
-
"api.go",
7
7
-
"server.go",
8
8
-
"snippets.go",
9
9
-
"templates.go",
10
10
-
"trace.go",
11
11
-
],
12
12
-
importpath = "github.com/sourcegraph/zoekt/web",
13
13
-
visibility = ["//visibility:public"],
14
14
-
deps = [
15
15
-
"//:zoekt",
16
16
-
"//json",
17
17
-
"//query",
18
18
-
"//rpc",
19
19
-
"//stream",
20
20
-
"//trace",
21
21
-
"@com_github_grafana_regexp//:regexp",
22
22
-
"@com_github_opentracing_opentracing_go//:opentracing-go",
23
23
-
],
24
24
-
)
25
25
-
26
26
-
go_test(
27
27
-
name = "web_test",
28
28
-
srcs = ["e2e_test.go"],
29
29
-
embed = [":web"],
30
30
-
deps = [
31
31
-
"//:zoekt",
32
32
-
"//query",
33
33
-
"//rpc",
34
34
-
"//stream",
35
35
-
"@com_github_google_go_cmp//cmp",
36
36
-
],
37
37
-
)