fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

Select the types of activity you want to include in your feed.

Support building Zoekt with Bazel (#573)

+4477
+4
.gitignore
··· 7 7 .envrc 8 8 .idea 9 9 .direnv 10 + bazel-bin 11 + bazel-out 12 + bazel-testlogs 13 + bazel-zoekt
+125
BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") 2 + 3 + # gazelle:prefix github.com/sourcegraph/zoekt 4 + # gazelle:build_file_name BUILD.bazel 5 + load("@bazel_gazelle//:def.bzl", "gazelle") 6 + 7 + gazelle(name = "gazelle") 8 + 9 + gazelle( 10 + name = "gazelle-update-repos", 11 + args = [ 12 + "-from_file=go.mod", 13 + "-to_macro=deps.bzl%go_dependencies", 14 + "-prune", 15 + "-build_file_proto_mode=disable_global", 16 + ], 17 + command = "update-repos", 18 + ) 19 + 20 + go_library( 21 + name = "zoekt", 22 + srcs = [ 23 + "api.go", 24 + "bits.go", 25 + "btree.go", 26 + "contentprovider.go", 27 + "eval.go", 28 + "hititer.go", 29 + "indexbuilder.go", 30 + "indexdata.go", 31 + "indexfile.go", 32 + "marshal.go", 33 + "matchiter.go", 34 + "matchtree.go", 35 + "merge.go", 36 + "ngramoffset.go", 37 + "read.go", 38 + "section.go", 39 + "toc.go", 40 + "tombstones.go", 41 + "tombstones_unix.go", 42 + "tombstones_windows.go", 43 + "write.go", 44 + ], 45 + importpath = "github.com/sourcegraph/zoekt", 46 + visibility = ["//visibility:public"], 47 + deps = [ 48 + "//query", 49 + "@com_github_edsrzf_mmap_go//:mmap-go", 50 + "@com_github_go_enry_go_enry_v2//:go-enry", 51 + "@com_github_go_enry_go_enry_v2//data", 52 + "@com_github_grafana_regexp//:regexp", 53 + "@com_github_rs_xid//:xid", 54 + ] + select({ 55 + "@io_bazel_rules_go//go/platform:aix": [ 56 + "@org_golang_x_sys//unix", 57 + ], 58 + "@io_bazel_rules_go//go/platform:android": [ 59 + "@org_golang_x_sys//unix", 60 + ], 61 + "@io_bazel_rules_go//go/platform:darwin": [ 62 + "@org_golang_x_sys//unix", 63 + ], 64 + "@io_bazel_rules_go//go/platform:dragonfly": [ 65 + "@org_golang_x_sys//unix", 66 + ], 67 + "@io_bazel_rules_go//go/platform:freebsd": [ 68 + "@org_golang_x_sys//unix", 69 + ], 70 + "@io_bazel_rules_go//go/platform:illumos": [ 71 + "@org_golang_x_sys//unix", 72 + ], 73 + "@io_bazel_rules_go//go/platform:ios": [ 74 + "@org_golang_x_sys//unix", 75 + ], 76 + "@io_bazel_rules_go//go/platform:js": [ 77 + "@org_golang_x_sys//unix", 78 + ], 79 + "@io_bazel_rules_go//go/platform:linux": [ 80 + "@org_golang_x_sys//unix", 81 + ], 82 + "@io_bazel_rules_go//go/platform:netbsd": [ 83 + "@org_golang_x_sys//unix", 84 + ], 85 + "@io_bazel_rules_go//go/platform:openbsd": [ 86 + "@org_golang_x_sys//unix", 87 + ], 88 + "@io_bazel_rules_go//go/platform:plan9": [ 89 + "@org_golang_x_sys//unix", 90 + ], 91 + "@io_bazel_rules_go//go/platform:solaris": [ 92 + "@org_golang_x_sys//unix", 93 + ], 94 + "//conditions:default": [], 95 + }), 96 + ) 97 + 98 + go_test( 99 + name = "zoekt_test", 100 + srcs = [ 101 + "api_test.go", 102 + "bits_test.go", 103 + "btree_test.go", 104 + "contentprovider_test.go", 105 + "eval_test.go", 106 + "hititer_test.go", 107 + "index_test.go", 108 + "marshal_test.go", 109 + "matchtree_test.go", 110 + "merge_test.go", 111 + "ngramoffset_test.go", 112 + "read_test.go", 113 + "tombstones_test.go", 114 + ], 115 + data = [":testdata"], 116 + embed = [":zoekt"], 117 + deps = [ 118 + "//query", 119 + "@com_github_google_go_cmp//cmp", 120 + "@com_github_google_go_cmp//cmp/cmpopts", 121 + "@com_github_grafana_regexp//:regexp", 122 + "@com_github_kylelemons_godebug//pretty", 123 + "@com_github_roaringbitmap_roaring//:roaring", 124 + ], 125 + )
+68
WORKSPACE
··· 1 + load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") 2 + 3 + http_archive( 4 + name = "bazel_skylib", 5 + sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506", 6 + urls = [ 7 + "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz", 8 + "https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz", 9 + ], 10 + ) 11 + 12 + load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace") 13 + 14 + bazel_skylib_workspace() 15 + 16 + http_archive( 17 + name = "aspect_bazel_lib", 18 + sha256 = "2518c757715d4f5fc7cc7e0a68742dd1155eaafc78fb9196b8a18e13a738cea2", 19 + strip_prefix = "bazel-lib-1.28.0", 20 + url = "https://github.com/aspect-build/bazel-lib/releases/download/v1.28.0/bazel-lib-v1.28.0.tar.gz", 21 + ) 22 + 23 + http_archive( 24 + name = "io_bazel_rules_go", 25 + sha256 = "dd926a88a564a9246713a9c00b35315f54cbd46b31a26d5d8fb264c07045f05d", 26 + urls = [ 27 + "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.38.1/rules_go-v0.38.1.zip", 28 + "https://github.com/bazelbuild/rules_go/releases/download/v0.38.1/rules_go-v0.38.1.zip", 29 + ], 30 + ) 31 + 32 + http_archive( 33 + name = "bazel_gazelle", 34 + sha256 = "ecba0f04f96b4960a5b250c8e8eeec42281035970aa8852dda73098274d14a1d", 35 + urls = [ 36 + "https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.29.0/bazel-gazelle-v0.29.0.tar.gz", 37 + "https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.29.0/bazel-gazelle-v0.29.0.tar.gz", 38 + ], 39 + ) 40 + 41 + http_archive( 42 + name = "com_google_protobuf", 43 + sha256 = "6aff9834fd7c540875e1836967c8d14c6897e3785a2efac629f69860fb7834ff", 44 + strip_prefix = "protobuf-3.15.0", 45 + urls = [ 46 + "https://github.com/protocolbuffers/protobuf/archive/v3.15.0.tar.gz", 47 + ], 48 + ) 49 + 50 + # Go toolchain setup 51 + load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies") 52 + load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository") 53 + load("//:deps.bzl", "go_dependencies") 54 + 55 + # gazelle:repository_macro deps.bzl%go_dependencies 56 + go_dependencies() 57 + 58 + go_rules_dependencies() 59 + 60 + go_register_toolchains( 61 + version = "1.19.6", 62 + ) 63 + 64 + gazelle_dependencies() 65 + 66 + load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps") 67 + 68 + protobuf_deps()
+81
build/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") 2 + 3 + go_library( 4 + name = "build", 5 + srcs = [ 6 + "builder.go", 7 + "builder_unix.go", 8 + "ctags.go", 9 + ], 10 + importpath = "github.com/sourcegraph/zoekt/build", 11 + visibility = ["//visibility:public"], 12 + deps = [ 13 + "//:zoekt", 14 + "//ctags", 15 + "@com_github_bmatcuk_doublestar//:doublestar", 16 + "@com_github_grafana_regexp//:regexp", 17 + "@com_github_rs_xid//:xid", 18 + "@in_gopkg_natefinch_lumberjack_v2//:lumberjack_v2", 19 + ] + select({ 20 + "@io_bazel_rules_go//go/platform:aix": [ 21 + "@org_golang_x_sys//unix", 22 + ], 23 + "@io_bazel_rules_go//go/platform:android": [ 24 + "@org_golang_x_sys//unix", 25 + ], 26 + "@io_bazel_rules_go//go/platform:darwin": [ 27 + "@org_golang_x_sys//unix", 28 + ], 29 + "@io_bazel_rules_go//go/platform:dragonfly": [ 30 + "@org_golang_x_sys//unix", 31 + ], 32 + "@io_bazel_rules_go//go/platform:freebsd": [ 33 + "@org_golang_x_sys//unix", 34 + ], 35 + "@io_bazel_rules_go//go/platform:illumos": [ 36 + "@org_golang_x_sys//unix", 37 + ], 38 + "@io_bazel_rules_go//go/platform:ios": [ 39 + "@org_golang_x_sys//unix", 40 + ], 41 + "@io_bazel_rules_go//go/platform:js": [ 42 + "@org_golang_x_sys//unix", 43 + ], 44 + "@io_bazel_rules_go//go/platform:linux": [ 45 + "@org_golang_x_sys//unix", 46 + ], 47 + "@io_bazel_rules_go//go/platform:netbsd": [ 48 + "@org_golang_x_sys//unix", 49 + ], 50 + "@io_bazel_rules_go//go/platform:openbsd": [ 51 + "@org_golang_x_sys//unix", 52 + ], 53 + "@io_bazel_rules_go//go/platform:plan9": [ 54 + "@org_golang_x_sys//unix", 55 + ], 56 + "@io_bazel_rules_go//go/platform:solaris": [ 57 + "@org_golang_x_sys//unix", 58 + ], 59 + "//conditions:default": [], 60 + }), 61 + ) 62 + 63 + go_test( 64 + name = "build_test", 65 + srcs = [ 66 + "builder_test.go", 67 + "ctags_test.go", 68 + "e2e_test.go", 69 + ], 70 + data = glob(["testdata/**"]) + ["//testdata:testdata"], 71 + embed = [":build"], 72 + deps = [ 73 + "//:zoekt", 74 + "//ctags", 75 + "//query", 76 + "//shards", 77 + "@com_github_google_go_cmp//cmp", 78 + "@com_github_google_go_cmp//cmp/cmpopts", 79 + "@com_github_grafana_regexp//:regexp", 80 + ], 81 + )
+12
cmd/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_library") 2 + 3 + go_library( 4 + name = "cmd", 5 + srcs = ["flags.go"], 6 + importpath = "github.com/sourcegraph/zoekt/cmd", 7 + visibility = ["//visibility:public"], 8 + deps = [ 9 + "//:zoekt", 10 + "//build", 11 + ], 12 + )
+37
cmd/zoekt-archive-index/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test") 2 + 3 + go_library( 4 + name = "zoekt-archive-index_lib", 5 + srcs = [ 6 + "archive.go", 7 + "flowrate.go", 8 + "main.go", 9 + ], 10 + importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-archive-index", 11 + visibility = ["//visibility:private"], 12 + deps = [ 13 + "//:zoekt", 14 + "//build", 15 + "//cmd", 16 + "@com_github_mxk_go_flowrate//flowrate", 17 + "@org_uber_go_automaxprocs//maxprocs", 18 + ], 19 + ) 20 + 21 + go_binary( 22 + name = "zoekt-archive-index", 23 + embed = [":zoekt-archive-index_lib"], 24 + visibility = ["//visibility:public"], 25 + ) 26 + 27 + go_test( 28 + name = "zoekt-archive-index_test", 29 + srcs = ["e2e_test.go"], 30 + embed = [":zoekt-archive-index_lib"], 31 + deps = [ 32 + "//:zoekt", 33 + "//build", 34 + "//query", 35 + "//shards", 36 + ], 37 + )
+26
cmd/zoekt-dynamic-indexserver/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test") 2 + 3 + go_library( 4 + name = "zoekt-dynamic-indexserver_lib", 5 + srcs = ["main.go"], 6 + importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-dynamic-indexserver", 7 + visibility = ["//visibility:private"], 8 + deps = [ 9 + "@com_github_prometheus_client_golang//prometheus", 10 + "@com_github_prometheus_client_golang//prometheus/collectors", 11 + "@com_github_prometheus_client_golang//prometheus/promauto", 12 + "@com_github_prometheus_client_golang//prometheus/promhttp", 13 + ], 14 + ) 15 + 16 + go_binary( 17 + name = "zoekt-dynamic-indexserver", 18 + embed = [":zoekt-dynamic-indexserver_lib"], 19 + visibility = ["//visibility:public"], 20 + ) 21 + 22 + go_test( 23 + name = "zoekt-dynamic-indexserver_test", 24 + srcs = ["main_test.go"], 25 + embed = [":zoekt-dynamic-indexserver_lib"], 26 + )
+15
cmd/zoekt-git-clone/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") 2 + 3 + go_library( 4 + name = "zoekt-git-clone_lib", 5 + srcs = ["main.go"], 6 + importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-git-clone", 7 + visibility = ["//visibility:private"], 8 + deps = ["//gitindex"], 9 + ) 10 + 11 + go_binary( 12 + name = "zoekt-git-clone", 13 + embed = [":zoekt-git-clone_lib"], 14 + visibility = ["//visibility:public"], 15 + )
+19
cmd/zoekt-git-index/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") 2 + 3 + go_library( 4 + name = "zoekt-git-index_lib", 5 + srcs = ["main.go"], 6 + importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-git-index", 7 + visibility = ["//visibility:private"], 8 + deps = [ 9 + "//cmd", 10 + "//gitindex", 11 + "@org_uber_go_automaxprocs//maxprocs", 12 + ], 13 + ) 14 + 15 + go_binary( 16 + name = "zoekt-git-index", 17 + embed = [":zoekt-git-index_lib"], 18 + visibility = ["//visibility:public"], 19 + )
+20
cmd/zoekt-index/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") 2 + 3 + go_library( 4 + name = "zoekt-index_lib", 5 + srcs = ["main.go"], 6 + importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-index", 7 + visibility = ["//visibility:private"], 8 + deps = [ 9 + "//:zoekt", 10 + "//build", 11 + "//cmd", 12 + "@org_uber_go_automaxprocs//maxprocs", 13 + ], 14 + ) 15 + 16 + go_binary( 17 + name = "zoekt-index", 18 + embed = [":zoekt-index_lib"], 19 + visibility = ["//visibility:public"], 20 + )
+22
cmd/zoekt-indexserver/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") 2 + 3 + go_library( 4 + name = "zoekt-indexserver_lib", 5 + srcs = [ 6 + "config.go", 7 + "main.go", 8 + ], 9 + importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-indexserver", 10 + visibility = ["//visibility:private"], 11 + deps = [ 12 + "//:zoekt", 13 + "//gitindex", 14 + "@com_github_fsnotify_fsnotify//:fsnotify", 15 + ], 16 + ) 17 + 18 + go_binary( 19 + name = "zoekt-indexserver", 20 + embed = [":zoekt-indexserver_lib"], 21 + visibility = ["//visibility:public"], 22 + )
+27
cmd/zoekt-merge-index/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test") 2 + 3 + go_library( 4 + name = "zoekt-merge-index_lib", 5 + srcs = ["main.go"], 6 + importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-merge-index", 7 + visibility = ["//visibility:private"], 8 + deps = ["//:zoekt"], 9 + ) 10 + 11 + go_binary( 12 + name = "zoekt-merge-index", 13 + embed = [":zoekt-merge-index_lib"], 14 + visibility = ["//visibility:public"], 15 + ) 16 + 17 + go_test( 18 + name = "zoekt-merge-index_test", 19 + srcs = ["main_test.go"], 20 + data = ["//testdata"], 21 + embed = [":zoekt-merge-index_lib"], 22 + deps = [ 23 + "//:zoekt", 24 + "//query", 25 + "//shards", 26 + ], 27 + )
+18
cmd/zoekt-mirror-bitbucket-server/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") 2 + 3 + go_library( 4 + name = "zoekt-mirror-bitbucket-server_lib", 5 + srcs = ["main.go"], 6 + importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-mirror-bitbucket-server", 7 + visibility = ["//visibility:private"], 8 + deps = [ 9 + "//gitindex", 10 + "@com_github_gfleury_go_bitbucket_v1//:go-bitbucket-v1", 11 + ], 12 + ) 13 + 14 + go_binary( 15 + name = "zoekt-mirror-bitbucket-server", 16 + embed = [":zoekt-mirror-bitbucket-server_lib"], 17 + visibility = ["//visibility:public"], 18 + )
+18
cmd/zoekt-mirror-gerrit/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") 2 + 3 + go_library( 4 + name = "zoekt-mirror-gerrit_lib", 5 + srcs = ["main.go"], 6 + importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-mirror-gerrit", 7 + visibility = ["//visibility:private"], 8 + deps = [ 9 + "//gitindex", 10 + "@com_github_andygrunwald_go_gerrit//:go-gerrit", 11 + ], 12 + ) 13 + 14 + go_binary( 15 + name = "zoekt-mirror-gerrit", 16 + embed = [":zoekt-mirror-gerrit_lib"], 17 + visibility = ["//visibility:public"], 18 + )
+19
cmd/zoekt-mirror-github/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") 2 + 3 + go_library( 4 + name = "zoekt-mirror-github_lib", 5 + srcs = ["main.go"], 6 + importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-mirror-github", 7 + visibility = ["//visibility:private"], 8 + deps = [ 9 + "//gitindex", 10 + "@com_github_google_go_github_v27//github", 11 + "@org_golang_x_oauth2//:oauth2", 12 + ], 13 + ) 14 + 15 + go_binary( 16 + name = "zoekt-mirror-github", 17 + embed = [":zoekt-mirror-github_lib"], 18 + visibility = ["//visibility:public"], 19 + )
+22
cmd/zoekt-mirror-gitiles/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") 2 + 3 + go_library( 4 + name = "zoekt-mirror-gitiles_lib", 5 + srcs = [ 6 + "cgit.go", 7 + "gitiles.go", 8 + "main.go", 9 + ], 10 + importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-mirror-gitiles", 11 + visibility = ["//visibility:private"], 12 + deps = [ 13 + "//gitindex", 14 + "@com_github_grafana_regexp//:regexp", 15 + ], 16 + ) 17 + 18 + go_binary( 19 + name = "zoekt-mirror-gitiles", 20 + embed = [":zoekt-mirror-gitiles_lib"], 21 + visibility = ["//visibility:public"], 22 + )
+18
cmd/zoekt-mirror-gitlab/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") 2 + 3 + go_library( 4 + name = "zoekt-mirror-gitlab_lib", 5 + srcs = ["main.go"], 6 + importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-mirror-gitlab", 7 + visibility = ["//visibility:private"], 8 + deps = [ 9 + "//gitindex", 10 + "@com_github_xanzy_go_gitlab//:go-gitlab", 11 + ], 12 + ) 13 + 14 + go_binary( 15 + name = "zoekt-mirror-gitlab", 16 + embed = [":zoekt-mirror-gitlab_lib"], 17 + visibility = ["//visibility:public"], 18 + )
+23
cmd/zoekt-repo-index/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") 2 + 3 + go_library( 4 + name = "zoekt-repo-index_lib", 5 + srcs = ["main.go"], 6 + importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-repo-index", 7 + visibility = ["//visibility:private"], 8 + deps = [ 9 + "//:zoekt", 10 + "//build", 11 + "//gitindex", 12 + "@com_github_go_git_go_git_v5//:go-git", 13 + "@com_github_go_git_go_git_v5//plumbing", 14 + "@com_github_google_slothfs//manifest", 15 + "@org_uber_go_automaxprocs//maxprocs", 16 + ], 17 + ) 18 + 19 + go_binary( 20 + name = "zoekt-repo-index", 21 + embed = [":zoekt-repo-index_lib"], 22 + visibility = ["//visibility:public"], 23 + )
+83
cmd/zoekt-sourcegraph-indexserver/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test") 2 + 3 + go_library( 4 + name = "zoekt-sourcegraph-indexserver_lib", 5 + srcs = [ 6 + "backoff.go", 7 + "cleanup.go", 8 + "debug.go", 9 + "index.go", 10 + "index_mutex.go", 11 + "main.go", 12 + "merge.go", 13 + "meta.go", 14 + "meta_unix.go", 15 + "meta_windows.go", 16 + "owner.go", 17 + "queue.go", 18 + "sg.go", 19 + ], 20 + embedsrcs = ["default_grpc_service_configuration.json"], 21 + importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-sourcegraph-indexserver", 22 + visibility = ["//visibility:private"], 23 + deps = [ 24 + "//:zoekt", 25 + "//build", 26 + "//cmd/zoekt-sourcegraph-indexserver/protos/sourcegraph/zoekt/configuration/v1:configuration", 27 + "//debugserver", 28 + "//internal/profiler", 29 + "@com_github_go_git_go_git_v5//:go-git", 30 + "@com_github_grafana_regexp//:regexp", 31 + "@com_github_hashicorp_go_retryablehttp//:go-retryablehttp", 32 + "@com_github_keegancsmith_tmpfriend//:tmpfriend", 33 + "@com_github_peterbourgon_ff_v3//ffcli", 34 + "@com_github_prometheus_client_golang//prometheus", 35 + "@com_github_prometheus_client_golang//prometheus/promauto", 36 + "@com_github_sourcegraph_log//:log", 37 + "@com_github_sourcegraph_mountinfo//:mountinfo", 38 + "@in_gopkg_natefinch_lumberjack_v2//:lumberjack_v2", 39 + "@org_golang_google_grpc//:go_default_library", 40 + "@org_golang_google_grpc//credentials/insecure", 41 + "@org_golang_google_grpc//metadata", 42 + "@org_golang_x_net//trace", 43 + "@org_golang_x_sys//unix", 44 + "@org_uber_go_atomic//:atomic", 45 + "@org_uber_go_automaxprocs//maxprocs", 46 + ], 47 + ) 48 + 49 + go_binary( 50 + name = "zoekt-sourcegraph-indexserver", 51 + embed = [":zoekt-sourcegraph-indexserver_lib"], 52 + visibility = ["//visibility:public"], 53 + ) 54 + 55 + go_test( 56 + name = "zoekt-sourcegraph-indexserver_test", 57 + srcs = [ 58 + "backoff_test.go", 59 + "cleanup_test.go", 60 + "index_test.go", 61 + "main_test.go", 62 + "merge_test.go", 63 + "meta_test.go", 64 + "owner_test.go", 65 + "queue_test.go", 66 + "sg_test.go", 67 + ], 68 + data = glob(["json_schemas/**"]) + ["//testdata:testdata"], 69 + embed = [":zoekt-sourcegraph-indexserver_lib"], 70 + deps = [ 71 + "//:zoekt", 72 + "//build", 73 + "//cmd/zoekt-sourcegraph-indexserver/protos/sourcegraph/zoekt/configuration/v1:configuration", 74 + "@com_github_google_go_cmp//cmp", 75 + "@com_github_google_go_cmp//cmp/cmpopts", 76 + "@com_github_sourcegraph_log//:log", 77 + "@com_github_sourcegraph_log//logtest", 78 + "@com_github_xeipuuv_gojsonschema//:gojsonschema", 79 + "@org_golang_google_grpc//:go_default_library", 80 + "@org_golang_google_protobuf//testing/protocmp", 81 + "@org_golang_google_protobuf//types/known/timestamppb", 82 + ], 83 + )
+25
cmd/zoekt-sourcegraph-indexserver/protos/sourcegraph/zoekt/configuration/v1/BUILD.bazel
··· 1 + load("@rules_proto//proto:defs.bzl", "proto_library") 2 + load("@io_bazel_rules_go//go:def.bzl", "go_library") 3 + load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") 4 + 5 + proto_library( 6 + name = "v1_proto", 7 + srcs = ["configuration.proto"], 8 + visibility = ["//visibility:public"], 9 + deps = ["@com_google_protobuf//:timestamp_proto"], 10 + ) 11 + 12 + go_proto_library( 13 + name = "v1_go_proto", 14 + compilers = ["@io_bazel_rules_go//proto:go_grpc"], 15 + importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-sourcegraph-indexserver/protos/sourcegraph/zoekt/configuration/v1", 16 + proto = ":v1_proto", 17 + visibility = ["//visibility:public"], 18 + ) 19 + 20 + go_library( 21 + name = "configuration", 22 + embed = [":v1_go_proto"], 23 + importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-sourcegraph-indexserver/protos/sourcegraph/zoekt/configuration/v1", 24 + visibility = ["//visibility:public"], 25 + )
+20
cmd/zoekt-test/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") 2 + 3 + go_library( 4 + name = "zoekt-test_lib", 5 + srcs = ["main.go"], 6 + importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-test", 7 + visibility = ["//visibility:private"], 8 + deps = [ 9 + "//:zoekt", 10 + "//build", 11 + "//query", 12 + "//shards", 13 + ], 14 + ) 15 + 16 + go_binary( 17 + name = "zoekt-test", 18 + embed = [":zoekt-test_lib"], 19 + visibility = ["//visibility:public"], 20 + )
+86
cmd/zoekt-webserver/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") 2 + 3 + go_library( 4 + name = "zoekt-webserver_lib", 5 + srcs = [ 6 + "main.go", 7 + "main_linux.go", 8 + "main_unix.go", 9 + "main_unsupported.go", 10 + "main_windows.go", 11 + ], 12 + importpath = "github.com/sourcegraph/zoekt/cmd/zoekt-webserver", 13 + visibility = ["//visibility:private"], 14 + deps = [ 15 + "//:zoekt", 16 + "//build", 17 + "//debugserver", 18 + "//internal/profiler", 19 + "//internal/tracer", 20 + "//query", 21 + "//shards", 22 + "//stream", 23 + "//web", 24 + "@com_github_opentracing_opentracing_go//:opentracing-go", 25 + "@com_github_prometheus_client_golang//prometheus", 26 + "@com_github_prometheus_client_golang//prometheus/promauto", 27 + "@com_github_shirou_gopsutil_v3//disk", 28 + "@com_github_sourcegraph_log//:log", 29 + "@com_github_sourcegraph_mountinfo//:mountinfo", 30 + "@com_github_uber_jaeger_client_go//:jaeger-client-go", 31 + "@io_opentelemetry_go_otel_trace//:trace", 32 + "@org_uber_go_automaxprocs//maxprocs", 33 + ] + select({ 34 + "@io_bazel_rules_go//go/platform:aix": [ 35 + "@org_golang_x_sys//unix", 36 + ], 37 + "@io_bazel_rules_go//go/platform:android": [ 38 + "@com_github_prometheus_procfs//:procfs", 39 + "@org_golang_x_sys//unix", 40 + ], 41 + "@io_bazel_rules_go//go/platform:darwin": [ 42 + "@org_golang_x_sys//unix", 43 + ], 44 + "@io_bazel_rules_go//go/platform:dragonfly": [ 45 + "@org_golang_x_sys//unix", 46 + ], 47 + "@io_bazel_rules_go//go/platform:freebsd": [ 48 + "@org_golang_x_sys//unix", 49 + ], 50 + "@io_bazel_rules_go//go/platform:illumos": [ 51 + "@org_golang_x_sys//unix", 52 + ], 53 + "@io_bazel_rules_go//go/platform:ios": [ 54 + "@org_golang_x_sys//unix", 55 + ], 56 + "@io_bazel_rules_go//go/platform:js": [ 57 + "@org_golang_x_sys//unix", 58 + ], 59 + "@io_bazel_rules_go//go/platform:linux": [ 60 + "@com_github_prometheus_procfs//:procfs", 61 + "@org_golang_x_sys//unix", 62 + ], 63 + "@io_bazel_rules_go//go/platform:netbsd": [ 64 + "@org_golang_x_sys//unix", 65 + ], 66 + "@io_bazel_rules_go//go/platform:openbsd": [ 67 + "@org_golang_x_sys//unix", 68 + ], 69 + "@io_bazel_rules_go//go/platform:plan9": [ 70 + "@org_golang_x_sys//unix", 71 + ], 72 + "@io_bazel_rules_go//go/platform:solaris": [ 73 + "@org_golang_x_sys//unix", 74 + ], 75 + "@io_bazel_rules_go//go/platform:windows": [ 76 + "@org_golang_x_sys//windows", 77 + ], 78 + "//conditions:default": [], 79 + }), 80 + ) 81 + 82 + go_binary( 83 + name = "zoekt-webserver", 84 + embed = [":zoekt-webserver_lib"], 85 + visibility = ["//visibility:public"], 86 + )
+19
cmd/zoekt/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") 2 + 3 + go_library( 4 + name = "zoekt_lib", 5 + srcs = ["main.go"], 6 + importpath = "github.com/sourcegraph/zoekt/cmd/zoekt", 7 + visibility = ["//visibility:private"], 8 + deps = [ 9 + "//:zoekt", 10 + "//query", 11 + "//shards", 12 + ], 13 + ) 14 + 15 + go_binary( 16 + name = "zoekt", 17 + embed = [":zoekt_lib"], 18 + visibility = ["//visibility:public"], 19 + )
+25
ctags/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") 2 + 3 + go_library( 4 + name = "ctags", 5 + srcs = [ 6 + "json.go", 7 + "parse.go", 8 + ], 9 + importpath = "github.com/sourcegraph/zoekt/ctags", 10 + visibility = ["//visibility:public"], 11 + deps = ["@com_github_sourcegraph_go_ctags//:go-ctags"], 12 + ) 13 + 14 + go_test( 15 + name = "ctags_test", 16 + srcs = [ 17 + "json_test.go", 18 + "parse_test.go", 19 + ], 20 + embed = [":ctags"], 21 + deps = [ 22 + "@com_github_google_go_cmp//cmp", 23 + "@com_github_google_go_cmp//cmp/cmpopts", 24 + ], 25 + )
+18
debugserver/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_library") 2 + 3 + go_library( 4 + name = "debugserver", 5 + srcs = [ 6 + "debug.go", 7 + "expvar.go", 8 + ], 9 + importpath = "github.com/sourcegraph/zoekt/debugserver", 10 + visibility = ["//visibility:public"], 11 + deps = [ 12 + "//:zoekt", 13 + "@com_github_prometheus_client_golang//prometheus", 14 + "@com_github_prometheus_client_golang//prometheus/promauto", 15 + "@com_github_prometheus_client_golang//prometheus/promhttp", 16 + "@org_golang_x_net//trace", 17 + ], 18 + )
+3267
deps.bzl
··· 1 + "Bazel go dependencies" 2 + 3 + load("@bazel_gazelle//:deps.bzl", "go_repository") 4 + 5 + def go_dependencies(): 6 + """The go dependencies in this macro are auto-updated by gazelle 7 + 8 + To update run, 9 + 10 + bazel run //:gazelle-update-repos 11 + """ 12 + pass 13 + go_repository( 14 + name = "cc_mvdan_gofumpt", 15 + build_file_proto_mode = "disable_global", 16 + importpath = "mvdan.cc/gofumpt", 17 + sum = "h1:JVf4NN1mIpHogBj7ABpgOyZc65/UUOkKQFkoURsz4MM=", 18 + version = "v0.4.0", 19 + ) 20 + go_repository( 21 + name = "co_honnef_go_tools", 22 + build_file_proto_mode = "disable_global", 23 + importpath = "honnef.co/go/tools", 24 + sum = "h1:UoveltGrhghAA7ePc+e+QYDHXrBps2PqFZiHkGR/xK8=", 25 + version = "v0.0.1-2020.1.4", 26 + ) 27 + go_repository( 28 + name = "com_github_acomagu_bufpipe", 29 + build_file_proto_mode = "disable_global", 30 + importpath = "github.com/acomagu/bufpipe", 31 + sum = "h1:fxAGrHZTgQ9w5QqVItgzwj235/uYZYgbXitB+dLupOk=", 32 + version = "v1.0.3", 33 + ) 34 + go_repository( 35 + name = "com_github_ajg_form", 36 + build_file_proto_mode = "disable_global", 37 + importpath = "github.com/ajg/form", 38 + sum = "h1:t9c7v8JUKu/XxOGBU0yjNpaMloxGEJhUkqFRq0ibGeU=", 39 + version = "v1.5.1", 40 + ) 41 + go_repository( 42 + name = "com_github_ajstarks_svgo", 43 + build_file_proto_mode = "disable_global", 44 + importpath = "github.com/ajstarks/svgo", 45 + sum = "h1:wVe6/Ea46ZMeNkQjjBW6xcqyQA/j5e0D6GytH95g0gQ=", 46 + version = "v0.0.0-20180226025133-644b8db467af", 47 + ) 48 + go_repository( 49 + name = "com_github_alecthomas_template", 50 + build_file_proto_mode = "disable_global", 51 + importpath = "github.com/alecthomas/template", 52 + sum = "h1:JYp7IbQjafoB+tBA3gMyHYHrpOtNuDiK/uB5uXxq5wM=", 53 + version = "v0.0.0-20190718012654-fb15b899a751", 54 + ) 55 + go_repository( 56 + name = "com_github_alecthomas_units", 57 + build_file_proto_mode = "disable_global", 58 + importpath = "github.com/alecthomas/units", 59 + sum = "h1:UQZhZ2O0vMHr2cI+DC1Mbh0TJxzA3RcLoMsFw+aXw7E=", 60 + version = "v0.0.0-20190924025748-f65c72e2690d", 61 + ) 62 + go_repository( 63 + name = "com_github_andreasbriese_bbloom", 64 + build_file_proto_mode = "disable_global", 65 + importpath = "github.com/AndreasBriese/bbloom", 66 + sum = "h1:HD8gA2tkByhMAwYaFAX9w2l7vxvBQ5NMoxDrkhqhtn4=", 67 + version = "v0.0.0-20190306092124-e2d15f34fcf9", 68 + ) 69 + go_repository( 70 + name = "com_github_andybalholm_brotli", 71 + build_file_proto_mode = "disable_global", 72 + importpath = "github.com/andybalholm/brotli", 73 + sum = "h1:V7DdXeJtZscaqfNuAdSRuRFzuiKlHSC/Zh3zl9qY3JY=", 74 + version = "v1.0.4", 75 + ) 76 + go_repository( 77 + name = "com_github_andygrunwald_go_gerrit", 78 + build_file_proto_mode = "disable_global", 79 + importpath = "github.com/andygrunwald/go-gerrit", 80 + sum = "h1:ohDU8MHAAE/FMlqs+KVlzLpVx3/gJ86rNO+8TZ9nea8=", 81 + version = "v0.0.0-20230211083816-04e01d7217b2", 82 + ) 83 + go_repository( 84 + name = "com_github_anmitsu_go_shlex", 85 + build_file_proto_mode = "disable_global", 86 + importpath = "github.com/anmitsu/go-shlex", 87 + sum = "h1:9AeTilPcZAjCFIImctFaOjnTIavg87rW78vTPkQqLI8=", 88 + version = "v0.0.0-20200514113438-38f4b401e2be", 89 + ) 90 + go_repository( 91 + name = "com_github_antihax_optional", 92 + build_file_proto_mode = "disable_global", 93 + importpath = "github.com/antihax/optional", 94 + sum = "h1:xK2lYat7ZLaVVcIuj82J8kIro4V6kDe0AUDFboUCwcg=", 95 + version = "v1.0.0", 96 + ) 97 + go_repository( 98 + name = "com_github_armon_consul_api", 99 + build_file_proto_mode = "disable_global", 100 + importpath = "github.com/armon/consul-api", 101 + sum = "h1:G1bPvciwNyF7IUmKXNt9Ak3m6u9DE1rF+RmtIkBpVdA=", 102 + version = "v0.0.0-20180202201655-eb2c6b5be1b6", 103 + ) 104 + go_repository( 105 + name = "com_github_armon_go_socks5", 106 + build_file_proto_mode = "disable_global", 107 + importpath = "github.com/armon/go-socks5", 108 + sum = "h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio=", 109 + version = "v0.0.0-20160902184237-e75332964ef5", 110 + ) 111 + go_repository( 112 + name = "com_github_aymerick_douceur", 113 + build_file_proto_mode = "disable_global", 114 + importpath = "github.com/aymerick/douceur", 115 + sum = "h1:Mv+mAeH1Q+n9Fr+oyamOlAkUNPWPlA8PPGR0QAaYuPk=", 116 + version = "v0.2.0", 117 + ) 118 + go_repository( 119 + name = "com_github_aymerick_raymond", 120 + build_file_proto_mode = "disable_global", 121 + importpath = "github.com/aymerick/raymond", 122 + sum = "h1:Ppm0npCCsmuR9oQaBtRuZcmILVE74aXE+AmrJj8L2ns=", 123 + version = "v2.0.3-0.20180322193309-b565731e1464+incompatible", 124 + ) 125 + go_repository( 126 + name = "com_github_benbjohnson_clock", 127 + build_file_proto_mode = "disable_global", 128 + importpath = "github.com/benbjohnson/clock", 129 + sum = "h1:Q92kusRqC1XV2MjkWETPvjJVqKetz1OzxZB7mHJLju8=", 130 + version = "v1.1.0", 131 + ) 132 + go_repository( 133 + name = "com_github_beorn7_perks", 134 + build_file_proto_mode = "disable_global", 135 + importpath = "github.com/beorn7/perks", 136 + sum = "h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=", 137 + version = "v1.0.1", 138 + ) 139 + go_repository( 140 + name = "com_github_bits_and_blooms_bitset", 141 + build_file_proto_mode = "disable_global", 142 + importpath = "github.com/bits-and-blooms/bitset", 143 + sum = "h1:NpE8frKRLGHIcEzkR+gZhiioW1+WbYV6fKwD6ZIpQT8=", 144 + version = "v1.5.0", 145 + ) 146 + go_repository( 147 + name = "com_github_bmatcuk_doublestar", 148 + build_file_proto_mode = "disable_global", 149 + importpath = "github.com/bmatcuk/doublestar", 150 + sum = "h1:gPypJ5xD31uhX6Tf54sDPUOBXTqKH4c9aPY66CyQrS0=", 151 + version = "v1.3.4", 152 + ) 153 + go_repository( 154 + name = "com_github_burntsushi_toml", 155 + build_file_proto_mode = "disable_global", 156 + importpath = "github.com/BurntSushi/toml", 157 + sum = "h1:Rt8g24XnyGTyglgET/PRUNlrUeu9F5L+7FilkXfZgs0=", 158 + version = "v1.2.0", 159 + ) 160 + go_repository( 161 + name = "com_github_burntsushi_xgb", 162 + build_file_proto_mode = "disable_global", 163 + importpath = "github.com/BurntSushi/xgb", 164 + sum = "h1:1BDTz0u9nC3//pOCMdNH+CiXJVYJh5UQNCOBG7jbELc=", 165 + version = "v0.0.0-20160522181843-27f122750802", 166 + ) 167 + go_repository( 168 + name = "com_github_bwesterb_go_ristretto", 169 + build_file_proto_mode = "disable_global", 170 + importpath = "github.com/bwesterb/go-ristretto", 171 + sum = "h1:S2C0mmSjCLS3H9+zfXoIoKzl+cOncvBvt6pE+zTm5Ms=", 172 + version = "v1.2.2", 173 + ) 174 + go_repository( 175 + name = "com_github_cenkalti_backoff_v4", 176 + build_file_proto_mode = "disable_global", 177 + importpath = "github.com/cenkalti/backoff/v4", 178 + sum = "h1:HN5dHm3WBOgndBH6E8V0q2jIYIR3s9yglV8k/+MN3u4=", 179 + version = "v4.2.0", 180 + ) 181 + go_repository( 182 + name = "com_github_census_instrumentation_opencensus_proto", 183 + build_file_proto_mode = "disable_global", 184 + importpath = "github.com/census-instrumentation/opencensus-proto", 185 + sum = "h1:iKLQ0xPNFxR/2hzXZMrBo8f1j86j5WHzznCCQxV/b8g=", 186 + version = "v0.4.1", 187 + ) 188 + go_repository( 189 + name = "com_github_cespare_xxhash", 190 + build_file_proto_mode = "disable_global", 191 + importpath = "github.com/cespare/xxhash", 192 + sum = "h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko=", 193 + version = "v1.1.0", 194 + ) 195 + go_repository( 196 + name = "com_github_cespare_xxhash_v2", 197 + build_file_proto_mode = "disable_global", 198 + importpath = "github.com/cespare/xxhash/v2", 199 + sum = "h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44=", 200 + version = "v2.2.0", 201 + ) 202 + go_repository( 203 + name = "com_github_chzyer_logex", 204 + build_file_proto_mode = "disable_global", 205 + importpath = "github.com/chzyer/logex", 206 + sum = "h1:Swpa1K6QvQznwJRcfTfQJmTE72DqScAa40E+fbHEXEE=", 207 + version = "v1.1.10", 208 + ) 209 + go_repository( 210 + name = "com_github_chzyer_readline", 211 + build_file_proto_mode = "disable_global", 212 + importpath = "github.com/chzyer/readline", 213 + sum = "h1:lSwwFrbNviGePhkewF1az4oLmcwqCZijQ2/Wi3BGHAI=", 214 + version = "v1.5.0", 215 + ) 216 + go_repository( 217 + name = "com_github_chzyer_test", 218 + build_file_proto_mode = "disable_global", 219 + importpath = "github.com/chzyer/test", 220 + sum = "h1:q763qf9huN11kDQavWsoZXJNW3xEE4JJyHa5Q25/sd8=", 221 + version = "v0.0.0-20180213035817-a1ea475d72b1", 222 + ) 223 + go_repository( 224 + name = "com_github_client9_misspell", 225 + build_file_proto_mode = "disable_global", 226 + importpath = "github.com/client9/misspell", 227 + sum = "h1:ta993UF76GwbvJcIo3Y68y/M3WxlpEHPWIGDkJYwzJI=", 228 + version = "v0.3.4", 229 + ) 230 + go_repository( 231 + name = "com_github_cloudflare_circl", 232 + build_file_proto_mode = "disable_global", 233 + importpath = "github.com/cloudflare/circl", 234 + sum = "h1:VWp8dY3yH69fdM7lM6A1+NhhVoDu9vqK0jOgmkQHFWk=", 235 + version = "v1.3.2", 236 + ) 237 + go_repository( 238 + name = "com_github_cloudykit_fastprinter", 239 + build_file_proto_mode = "disable_global", 240 + importpath = "github.com/CloudyKit/fastprinter", 241 + sum = "h1:sR+/8Yb4slttB4vD+b9btVEnWgL3Q00OBTzVT8B9C0c=", 242 + version = "v0.0.0-20200109182630-33d98a066a53", 243 + ) 244 + go_repository( 245 + name = "com_github_cloudykit_jet_v3", 246 + build_file_proto_mode = "disable_global", 247 + importpath = "github.com/CloudyKit/jet/v3", 248 + sum = "h1:1PwO5w5VCtlUUl+KTOBsTGZlhjWkcybsGaAau52tOy8=", 249 + version = "v3.0.0", 250 + ) 251 + go_repository( 252 + name = "com_github_cloudykit_jet_v6", 253 + build_file_proto_mode = "disable_global", 254 + importpath = "github.com/CloudyKit/jet/v6", 255 + sum = "h1:hvO96X345XagdH1fAoBjpBYG4a1ghhL/QzalkduPuXk=", 256 + version = "v6.1.0", 257 + ) 258 + go_repository( 259 + name = "com_github_cncf_udpa_go", 260 + build_file_proto_mode = "disable_global", 261 + importpath = "github.com/cncf/udpa/go", 262 + sum = "h1:QQ3GSy+MqSHxm/d8nCtnAiZdYFd45cYZPs8vOOIYKfk=", 263 + version = "v0.0.0-20220112060539-c52dc94e7fbe", 264 + ) 265 + go_repository( 266 + name = "com_github_cncf_xds_go", 267 + build_file_proto_mode = "disable_global", 268 + importpath = "github.com/cncf/xds/go", 269 + sum = "h1:ACGZRIr7HsgBKHsueQ1yM4WaVaXh21ynwqsF8M8tXhA=", 270 + version = "v0.0.0-20230105202645-06c439db220b", 271 + ) 272 + go_repository( 273 + name = "com_github_cockroachdb_datadriven", 274 + build_file_proto_mode = "disable_global", 275 + importpath = "github.com/cockroachdb/datadriven", 276 + sum = "h1:H9MtNqVoVhvd9nCBwOyDjUEdZCREqbIdCJD93PBm/jA=", 277 + version = "v1.0.2", 278 + ) 279 + go_repository( 280 + name = "com_github_cockroachdb_errors", 281 + build_file_proto_mode = "disable_global", 282 + importpath = "github.com/cockroachdb/errors", 283 + sum = "h1:yFVvsI0VxmRShfawbt/laCIDy/mtTqqnvoNgiy5bEV8=", 284 + version = "v1.9.1", 285 + ) 286 + go_repository( 287 + name = "com_github_cockroachdb_logtags", 288 + build_file_proto_mode = "disable_global", 289 + importpath = "github.com/cockroachdb/logtags", 290 + sum = "h1:r6VH0faHjZeQy818SGhaone5OnYfxFR/+AzdY3sf5aE=", 291 + version = "v0.0.0-20230118201751-21c54148d20b", 292 + ) 293 + go_repository( 294 + name = "com_github_cockroachdb_redact", 295 + build_file_proto_mode = "disable_global", 296 + importpath = "github.com/cockroachdb/redact", 297 + sum = "h1:AKZds10rFSIj7qADf0g46UixK8NNLwWTNdCIGS5wfSQ=", 298 + version = "v1.1.3", 299 + ) 300 + go_repository( 301 + name = "com_github_codegangsta_inject", 302 + build_file_proto_mode = "disable_global", 303 + importpath = "github.com/codegangsta/inject", 304 + sum = "h1:sDMmm+q/3+BukdIpxwO365v/Rbspp2Nt5XntgQRXq8Q=", 305 + version = "v0.0.0-20150114235600-33e0aa1cb7c0", 306 + ) 307 + go_repository( 308 + name = "com_github_coreos_etcd", 309 + build_file_proto_mode = "disable_global", 310 + importpath = "github.com/coreos/etcd", 311 + sum = "h1:jFneRYjIvLMLhDLCzuTuU4rSJUjRplcJQ7pD7MnhC04=", 312 + version = "v3.3.10+incompatible", 313 + ) 314 + go_repository( 315 + name = "com_github_coreos_go_etcd", 316 + build_file_proto_mode = "disable_global", 317 + importpath = "github.com/coreos/go-etcd", 318 + sum = "h1:bXhRBIXoTm9BYHS3gE0TtQuyNZyeEMux2sDi4oo5YOo=", 319 + version = "v2.0.0+incompatible", 320 + ) 321 + go_repository( 322 + name = "com_github_coreos_go_semver", 323 + build_file_proto_mode = "disable_global", 324 + importpath = "github.com/coreos/go-semver", 325 + sum = "h1:3Jm3tLmsgAYcjC+4Up7hJrFBPr+n7rAqYeSw/SZazuY=", 326 + version = "v0.2.0", 327 + ) 328 + go_repository( 329 + name = "com_github_cpuguy83_go_md2man", 330 + build_file_proto_mode = "disable_global", 331 + importpath = "github.com/cpuguy83/go-md2man", 332 + sum = "h1:BSKMNlYxDvnunlTymqtgONjNnaRV1sTpcovwwjF22jk=", 333 + version = "v1.0.10", 334 + ) 335 + go_repository( 336 + name = "com_github_creack_pty", 337 + build_file_proto_mode = "disable_global", 338 + importpath = "github.com/creack/pty", 339 + sum = "h1:uDmaGzcdjhF4i/plgjmEsriH11Y0o7RKapEf/LDaM3w=", 340 + version = "v1.1.9", 341 + ) 342 + go_repository( 343 + name = "com_github_davecgh_go_spew", 344 + build_file_proto_mode = "disable_global", 345 + importpath = "github.com/davecgh/go-spew", 346 + sum = "h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=", 347 + version = "v1.1.1", 348 + ) 349 + go_repository( 350 + name = "com_github_dgraph_io_badger", 351 + build_file_proto_mode = "disable_global", 352 + importpath = "github.com/dgraph-io/badger", 353 + sum = "h1:DshxFxZWXUcO0xX476VJC07Xsr6ZCBVRHKZ93Oh7Evo=", 354 + version = "v1.6.0", 355 + ) 356 + go_repository( 357 + name = "com_github_dgryski_go_farm", 358 + build_file_proto_mode = "disable_global", 359 + importpath = "github.com/dgryski/go-farm", 360 + sum = "h1:tdlZCpZ/P9DhczCTSixgIKmwPv6+wP5DGjqLYw5SUiA=", 361 + version = "v0.0.0-20190423205320-6a90982ecee2", 362 + ) 363 + go_repository( 364 + name = "com_github_djherbis_buffer", 365 + build_file_proto_mode = "disable_global", 366 + importpath = "github.com/djherbis/buffer", 367 + sum = "h1:PH5Dd2ss0C7CRRhQCZ2u7MssF+No9ide8Ye71nPHcrQ=", 368 + version = "v1.2.0", 369 + ) 370 + go_repository( 371 + name = "com_github_djherbis_nio_v3", 372 + build_file_proto_mode = "disable_global", 373 + importpath = "github.com/djherbis/nio/v3", 374 + sum = "h1:6wxhnuppteMa6RHA4L81Dq7ThkZH8SwnDzXDYy95vB4=", 375 + version = "v3.0.1", 376 + ) 377 + go_repository( 378 + name = "com_github_dustin_go_humanize", 379 + build_file_proto_mode = "disable_global", 380 + importpath = "github.com/dustin/go-humanize", 381 + sum = "h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=", 382 + version = "v1.0.0", 383 + ) 384 + go_repository( 385 + name = "com_github_edsrzf_mmap_go", 386 + build_file_proto_mode = "disable_global", 387 + importpath = "github.com/edsrzf/mmap-go", 388 + sum = "h1:6EUwBLQ/Mcr1EYLE4Tn1VdW1A4ckqCQWZBw8Hr0kjpQ=", 389 + version = "v1.1.0", 390 + ) 391 + go_repository( 392 + name = "com_github_eknkc_amber", 393 + build_file_proto_mode = "disable_global", 394 + importpath = "github.com/eknkc/amber", 395 + sum = "h1:clC1lXBpe2kTj2VHdaIu9ajZQe4kcEY9j0NsnDDBZ3o=", 396 + version = "v0.0.0-20171010120322-cdade1c07385", 397 + ) 398 + go_repository( 399 + name = "com_github_emirpasic_gods", 400 + build_file_proto_mode = "disable_global", 401 + importpath = "github.com/emirpasic/gods", 402 + sum = "h1:FXtiHYKDGKCW2KzwZKx0iC0PQmdlorYgdFG9jPXJ1Bc=", 403 + version = "v1.18.1", 404 + ) 405 + go_repository( 406 + name = "com_github_envoyproxy_go_control_plane", 407 + build_file_proto_mode = "disable_global", 408 + importpath = "github.com/envoyproxy/go-control-plane", 409 + sum = "h1:xdCVXxEe0Y3FQith+0cj2irwZudqGYvecuLB1HtdexY=", 410 + version = "v0.10.3", 411 + ) 412 + go_repository( 413 + name = "com_github_envoyproxy_protoc_gen_validate", 414 + build_file_proto_mode = "disable_global", 415 + importpath = "github.com/envoyproxy/protoc-gen-validate", 416 + sum = "h1:PS7VIOgmSVhWUEeZwTe7z7zouA22Cr590PzXKbZHOVY=", 417 + version = "v0.9.1", 418 + ) 419 + go_repository( 420 + name = "com_github_etcd_io_bbolt", 421 + build_file_proto_mode = "disable_global", 422 + importpath = "github.com/etcd-io/bbolt", 423 + sum = "h1:gSJmxrs37LgTqR/oyJBWok6k6SvXEUerFTbltIhXkBM=", 424 + version = "v1.3.3", 425 + ) 426 + go_repository( 427 + name = "com_github_fasthttp_contrib_websocket", 428 + build_file_proto_mode = "disable_global", 429 + importpath = "github.com/fasthttp-contrib/websocket", 430 + sum = "h1:DddqAaWDpywytcG8w/qoQ5sAN8X12d3Z3koB0C3Rxsc=", 431 + version = "v0.0.0-20160511215533-1f3b11f56072", 432 + ) 433 + go_repository( 434 + name = "com_github_fatih_color", 435 + build_file_proto_mode = "disable_global", 436 + importpath = "github.com/fatih/color", 437 + sum = "h1:qfhVLaG5s+nCROl1zJsZRxFeYrHLqWroPOQ8BWiNb4w=", 438 + version = "v1.14.1", 439 + ) 440 + go_repository( 441 + name = "com_github_fatih_structs", 442 + build_file_proto_mode = "disable_global", 443 + importpath = "github.com/fatih/structs", 444 + sum = "h1:Q7juDM0QtcnhCpeyLGQKyg4TOIghuNXrkL32pHAUMxo=", 445 + version = "v1.1.0", 446 + ) 447 + go_repository( 448 + name = "com_github_flosch_pongo2_v4", 449 + build_file_proto_mode = "disable_global", 450 + importpath = "github.com/flosch/pongo2/v4", 451 + sum = "h1:gv+5Pe3vaSVmiJvh/BZa82b7/00YUGm0PIyVVLop0Hw=", 452 + version = "v4.0.2", 453 + ) 454 + go_repository( 455 + name = "com_github_fogleman_gg", 456 + build_file_proto_mode = "disable_global", 457 + importpath = "github.com/fogleman/gg", 458 + sum = "h1:WXb3TSNmHp2vHoCroCIB1foO/yQ36swABL8aOVeDpgg=", 459 + version = "v1.2.1-0.20190220221249-0403632d5b90", 460 + ) 461 + go_repository( 462 + name = "com_github_fsnotify_fsnotify", 463 + build_file_proto_mode = "disable_global", 464 + importpath = "github.com/fsnotify/fsnotify", 465 + sum = "h1:n+5WquG0fcWoWp6xPWfHdbskMCQaFnG6PfBrh1Ky4HY=", 466 + version = "v1.6.0", 467 + ) 468 + go_repository( 469 + name = "com_github_gavv_httpexpect", 470 + build_file_proto_mode = "disable_global", 471 + importpath = "github.com/gavv/httpexpect", 472 + sum = "h1:1X9kcRshkSKEjNJJxX9Y9mQ5BRfbxU5kORdjhlA1yX8=", 473 + version = "v2.0.0+incompatible", 474 + ) 475 + go_repository( 476 + name = "com_github_getsentry_sentry_go", 477 + build_file_proto_mode = "disable_global", 478 + importpath = "github.com/getsentry/sentry-go", 479 + sum = "h1:MtBW5H9QgdcJabtZcuJG80BMOwaBpkRDZkxRkNC1sN0=", 480 + version = "v0.18.0", 481 + ) 482 + go_repository( 483 + name = "com_github_gfleury_go_bitbucket_v1", 484 + build_file_proto_mode = "disable_global", 485 + importpath = "github.com/gfleury/go-bitbucket-v1", 486 + sum = "h1:xVRGXRHjGaqT9M+mNNQrsoku+p2z/+Ei/b2gs7ZCbZw=", 487 + version = "v0.0.0-20220418082332-711d7d5e805f", 488 + ) 489 + go_repository( 490 + name = "com_github_ghodss_yaml", 491 + build_file_proto_mode = "disable_global", 492 + importpath = "github.com/ghodss/yaml", 493 + sum = "h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=", 494 + version = "v1.0.0", 495 + ) 496 + go_repository( 497 + name = "com_github_gin_contrib_sse", 498 + build_file_proto_mode = "disable_global", 499 + importpath = "github.com/gin-contrib/sse", 500 + sum = "h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE=", 501 + version = "v0.1.0", 502 + ) 503 + go_repository( 504 + name = "com_github_gin_gonic_gin", 505 + build_file_proto_mode = "disable_global", 506 + importpath = "github.com/gin-gonic/gin", 507 + sum = "h1:4+fr/el88TOO3ewCmQr8cx/CtZ/umlIRIs5M4NTNjf8=", 508 + version = "v1.8.1", 509 + ) 510 + go_repository( 511 + name = "com_github_gliderlabs_ssh", 512 + build_file_proto_mode = "disable_global", 513 + importpath = "github.com/gliderlabs/ssh", 514 + sum = "h1:OcaySEmAQJgyYcArR+gGGTHCyE7nvhEMTlYY+Dp8CpY=", 515 + version = "v0.3.5", 516 + ) 517 + go_repository( 518 + name = "com_github_go_check_check", 519 + build_file_proto_mode = "disable_global", 520 + importpath = "github.com/go-check/check", 521 + sum = "h1:0gkP6mzaMqkmpcJYCFOLkIBwI7xFExG03bbkOkCvUPI=", 522 + version = "v0.0.0-20180628173108-788fd7840127", 523 + ) 524 + go_repository( 525 + name = "com_github_go_enry_go_enry_v2", 526 + build_file_proto_mode = "disable_global", 527 + importpath = "github.com/go-enry/go-enry/v2", 528 + sum = "h1:BwvNrN58JqBJhyyVdZSl5QD3xoxEEGYUrRyPh31FGhw=", 529 + version = "v2.8.3", 530 + ) 531 + go_repository( 532 + name = "com_github_go_enry_go_oniguruma", 533 + build_file_proto_mode = "disable_global", 534 + importpath = "github.com/go-enry/go-oniguruma", 535 + sum = "h1:k8aAMuJfMrqm/56SG2lV9Cfti6tC4x8673aHCcBk+eo=", 536 + version = "v1.2.1", 537 + ) 538 + go_repository( 539 + name = "com_github_go_errors_errors", 540 + build_file_proto_mode = "disable_global", 541 + importpath = "github.com/go-errors/errors", 542 + sum = "h1:J6MZopCL4uSllY1OfXM374weqZFFItUbrImctkmUxIA=", 543 + version = "v1.4.2", 544 + ) 545 + go_repository( 546 + name = "com_github_go_git_gcfg", 547 + build_file_proto_mode = "disable_global", 548 + importpath = "github.com/go-git/gcfg", 549 + sum = "h1:Q5ViNfGF8zFgyJWPqYwA7qGFoMTEiBmdlkcfRmpIMa4=", 550 + version = "v1.5.0", 551 + ) 552 + go_repository( 553 + name = "com_github_go_git_go_billy_v5", 554 + build_file_proto_mode = "disable_global", 555 + importpath = "github.com/go-git/go-billy/v5", 556 + sum = "h1:Uwp5tDRkPr+l/TnbHOQzp+tmJfLceOlbVucgpTz8ix4=", 557 + version = "v5.4.1", 558 + ) 559 + go_repository( 560 + name = "com_github_go_git_go_git_fixtures_v4", 561 + build_file_proto_mode = "disable_global", 562 + importpath = "github.com/go-git/go-git-fixtures/v4", 563 + sum = "h1:y5z6dd3qi8Hl+stezc8p3JxDkoTRqMAlKnXHuzrfjTQ=", 564 + version = "v4.3.1", 565 + ) 566 + go_repository( 567 + name = "com_github_go_git_go_git_v5", 568 + build_file_proto_mode = "disable_global", 569 + importpath = "github.com/go-git/go-git/v5", 570 + sum = "h1:v8lgZa5k9ylUw+OR/roJHTxR4QItsNFI5nKtAXFuynw=", 571 + version = "v5.5.2", 572 + ) 573 + go_repository( 574 + name = "com_github_go_gl_glfw", 575 + build_file_proto_mode = "disable_global", 576 + importpath = "github.com/go-gl/glfw", 577 + sum = "h1:QbL/5oDUmRBzO9/Z7Seo6zf912W/a6Sr4Eu0G/3Jho0=", 578 + version = "v0.0.0-20190409004039-e6da0acd62b1", 579 + ) 580 + go_repository( 581 + name = "com_github_go_gl_glfw_v3_3_glfw", 582 + build_file_proto_mode = "disable_global", 583 + importpath = "github.com/go-gl/glfw/v3.3/glfw", 584 + sum = "h1:WtGNWLvXpe6ZudgnXrq0barxBImvnnJoMEhXAzcbM0I=", 585 + version = "v0.0.0-20200222043503-6f7a984d4dc4", 586 + ) 587 + go_repository( 588 + name = "com_github_go_kit_log", 589 + build_file_proto_mode = "disable_global", 590 + importpath = "github.com/go-kit/log", 591 + sum = "h1:MRVx0/zhvdseW+Gza6N9rVzU/IVzaeE1SFI4raAhmBU=", 592 + version = "v0.2.1", 593 + ) 594 + go_repository( 595 + name = "com_github_go_logfmt_logfmt", 596 + build_file_proto_mode = "disable_global", 597 + importpath = "github.com/go-logfmt/logfmt", 598 + sum = "h1:otpy5pqBCBZ1ng9RQ0dPu4PN7ba75Y/aA+UpowDyNVA=", 599 + version = "v0.5.1", 600 + ) 601 + go_repository( 602 + name = "com_github_go_logr_logr", 603 + build_file_proto_mode = "disable_global", 604 + importpath = "github.com/go-logr/logr", 605 + sum = "h1:2DntVwHkVopvECVRSlL5PSo9eG+cAkDCuckLubN+rq0=", 606 + version = "v1.2.3", 607 + ) 608 + go_repository( 609 + name = "com_github_go_logr_stdr", 610 + build_file_proto_mode = "disable_global", 611 + importpath = "github.com/go-logr/stdr", 612 + sum = "h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag=", 613 + version = "v1.2.2", 614 + ) 615 + go_repository( 616 + name = "com_github_go_martini_martini", 617 + build_file_proto_mode = "disable_global", 618 + importpath = "github.com/go-martini/martini", 619 + sum = "h1:xveKWz2iaueeTaUgdetzel+U7exyigDYBryyVfV/rZk=", 620 + version = "v0.0.0-20170121215854-22fa46961aab", 621 + ) 622 + go_repository( 623 + name = "com_github_go_ole_go_ole", 624 + build_file_proto_mode = "disable_global", 625 + importpath = "github.com/go-ole/go-ole", 626 + sum = "h1:/Fpf6oFPoeFik9ty7siob0G6Ke8QvQEuVcuChpwXzpY=", 627 + version = "v1.2.6", 628 + ) 629 + go_repository( 630 + name = "com_github_go_playground_locales", 631 + build_file_proto_mode = "disable_global", 632 + importpath = "github.com/go-playground/locales", 633 + sum = "h1:u50s323jtVGugKlcYeyzC0etD1HifMjqmJqb8WugfUU=", 634 + version = "v0.14.0", 635 + ) 636 + go_repository( 637 + name = "com_github_go_playground_universal_translator", 638 + build_file_proto_mode = "disable_global", 639 + importpath = "github.com/go-playground/universal-translator", 640 + sum = "h1:82dyy6p4OuJq4/CByFNOn/jYrnRPArHwAcmLoJZxyho=", 641 + version = "v0.18.0", 642 + ) 643 + go_repository( 644 + name = "com_github_go_playground_validator_v10", 645 + build_file_proto_mode = "disable_global", 646 + importpath = "github.com/go-playground/validator/v10", 647 + sum = "h1:prmOlTVv+YjZjmRmNSF3VmspqJIxJWXmqUsHwfTRRkQ=", 648 + version = "v10.11.1", 649 + ) 650 + go_repository( 651 + name = "com_github_gobwas_glob", 652 + build_file_proto_mode = "disable_global", 653 + importpath = "github.com/gobwas/glob", 654 + sum = "h1:A4xDbljILXROh+kObIiy5kIaPYD8e96x1tgBhUI5J+Y=", 655 + version = "v0.2.3", 656 + ) 657 + go_repository( 658 + name = "com_github_gobwas_httphead", 659 + build_file_proto_mode = "disable_global", 660 + importpath = "github.com/gobwas/httphead", 661 + sum = "h1:s+21KNqlpePfkah2I+gwHF8xmJWRjooY+5248k6m4A0=", 662 + version = "v0.0.0-20180130184737-2c6c146eadee", 663 + ) 664 + go_repository( 665 + name = "com_github_gobwas_pool", 666 + build_file_proto_mode = "disable_global", 667 + importpath = "github.com/gobwas/pool", 668 + sum = "h1:QEmUOlnSjWtnpRGHF3SauEiOsy82Cup83Vf2LcMlnc8=", 669 + version = "v0.2.0", 670 + ) 671 + go_repository( 672 + name = "com_github_gobwas_ws", 673 + build_file_proto_mode = "disable_global", 674 + importpath = "github.com/gobwas/ws", 675 + sum = "h1:CoAavW/wd/kulfZmSIBt6p24n4j7tHgNVCjsfHVNUbo=", 676 + version = "v1.0.2", 677 + ) 678 + go_repository( 679 + name = "com_github_goccy_go_json", 680 + build_file_proto_mode = "disable_global", 681 + importpath = "github.com/goccy/go-json", 682 + sum = "h1:/pAaQDLHEoCq/5FFmSKBswWmK6H0e8g4159Kc/X/nqk=", 683 + version = "v0.9.11", 684 + ) 685 + go_repository( 686 + name = "com_github_gogo_googleapis", 687 + build_file_proto_mode = "disable_global", 688 + importpath = "github.com/gogo/googleapis", 689 + sum = "h1:1Yx4Myt7BxzvUr5ldGSbwYiZG6t9wGBZ+8/fX3Wvtq0=", 690 + version = "v1.4.1", 691 + ) 692 + go_repository( 693 + name = "com_github_gogo_protobuf", 694 + build_file_proto_mode = "disable_global", 695 + importpath = "github.com/gogo/protobuf", 696 + sum = "h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=", 697 + version = "v1.3.2", 698 + ) 699 + go_repository( 700 + name = "com_github_gogo_status", 701 + build_file_proto_mode = "disable_global", 702 + importpath = "github.com/gogo/status", 703 + sum = "h1:+eIkrewn5q6b30y+g/BJINVVdi2xH7je5MPJ3ZPK3JA=", 704 + version = "v1.1.0", 705 + ) 706 + go_repository( 707 + name = "com_github_golang_freetype", 708 + build_file_proto_mode = "disable_global", 709 + importpath = "github.com/golang/freetype", 710 + sum = "h1:DACJavvAHhabrF08vX0COfcOBJRhZ8lUbR+ZWIs0Y5g=", 711 + version = "v0.0.0-20170609003504-e2365dfdc4a0", 712 + ) 713 + go_repository( 714 + name = "com_github_golang_glog", 715 + build_file_proto_mode = "disable_global", 716 + importpath = "github.com/golang/glog", 717 + sum = "h1:nfP3RFugxnNRyKgeWd4oI1nYvXpxrx8ck8ZrcizshdQ=", 718 + version = "v1.0.0", 719 + ) 720 + go_repository( 721 + name = "com_github_golang_groupcache", 722 + build_file_proto_mode = "disable_global", 723 + importpath = "github.com/golang/groupcache", 724 + sum = "h1:oI5xCqsCo564l8iNU+DwB5epxmsaqB+rhGL0m5jtYqE=", 725 + version = "v0.0.0-20210331224755-41bb18bfe9da", 726 + ) 727 + go_repository( 728 + name = "com_github_golang_jwt_jwt", 729 + build_file_proto_mode = "disable_global", 730 + importpath = "github.com/golang-jwt/jwt", 731 + sum = "h1:IfV12K8xAKAnZqdXVzCZ+TOjboZ2keLg81eXfW3O+oY=", 732 + version = "v3.2.2+incompatible", 733 + ) 734 + go_repository( 735 + name = "com_github_golang_mock", 736 + build_file_proto_mode = "disable_global", 737 + importpath = "github.com/golang/mock", 738 + sum = "h1:ErTB+efbowRARo13NNdxyJji2egdxLGQhRaY+DUumQc=", 739 + version = "v1.6.0", 740 + ) 741 + go_repository( 742 + name = "com_github_golang_protobuf", 743 + build_file_proto_mode = "disable_global", 744 + importpath = "github.com/golang/protobuf", 745 + sum = "h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw=", 746 + version = "v1.5.2", 747 + ) 748 + go_repository( 749 + name = "com_github_golang_snappy", 750 + build_file_proto_mode = "disable_global", 751 + importpath = "github.com/golang/snappy", 752 + sum = "h1:yAGX7huGHXlcLOEtBnF4w7FQwA26wojNCwOYAEhLjQM=", 753 + version = "v0.0.4", 754 + ) 755 + go_repository( 756 + name = "com_github_gomodule_redigo", 757 + build_file_proto_mode = "disable_global", 758 + importpath = "github.com/gomodule/redigo", 759 + sum = "h1:y0Wmhvml7cGnzPa9nocn/fMraMH/lMDdeG+rkx4VgYY=", 760 + version = "v1.7.1-0.20190724094224-574c33c3df38", 761 + ) 762 + go_repository( 763 + name = "com_github_google_btree", 764 + build_file_proto_mode = "disable_global", 765 + importpath = "github.com/google/btree", 766 + sum = "h1:0udJVsspx3VBr5FwtLhQQtuAsVc79tTq0ocGIPAU6qo=", 767 + version = "v1.0.0", 768 + ) 769 + go_repository( 770 + name = "com_github_google_go_cmp", 771 + build_file_proto_mode = "disable_global", 772 + importpath = "github.com/google/go-cmp", 773 + sum = "h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=", 774 + version = "v0.5.9", 775 + ) 776 + go_repository( 777 + name = "com_github_google_go_github_v27", 778 + build_file_proto_mode = "disable_global", 779 + importpath = "github.com/google/go-github/v27", 780 + sum = "h1:oiOZuBmGHvrGM1X9uNUAUlLgp5r1UUO/M/KnbHnLRlQ=", 781 + version = "v27.0.6", 782 + ) 783 + go_repository( 784 + name = "com_github_google_go_querystring", 785 + build_file_proto_mode = "disable_global", 786 + importpath = "github.com/google/go-querystring", 787 + sum = "h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=", 788 + version = "v1.1.0", 789 + ) 790 + go_repository( 791 + name = "com_github_google_gofuzz", 792 + build_file_proto_mode = "disable_global", 793 + importpath = "github.com/google/gofuzz", 794 + sum = "h1:A8PeW59pxE9IoFRqBp37U+mSNaQoZ46F1f0f863XSXw=", 795 + version = "v1.0.0", 796 + ) 797 + go_repository( 798 + name = "com_github_google_martian", 799 + build_file_proto_mode = "disable_global", 800 + importpath = "github.com/google/martian", 801 + sum = "h1:/CP5g8u/VJHijgedC/Legn3BAbAaWPgecwXBIDzw5no=", 802 + version = "v2.1.0+incompatible", 803 + ) 804 + go_repository( 805 + name = "com_github_google_martian_v3", 806 + build_file_proto_mode = "disable_global", 807 + importpath = "github.com/google/martian/v3", 808 + sum = "h1:d8MncMlErDFTwQGBK1xhv026j9kqhvw1Qv9IbWT1VLQ=", 809 + version = "v3.2.1", 810 + ) 811 + go_repository( 812 + name = "com_github_google_pprof", 813 + build_file_proto_mode = "disable_global", 814 + importpath = "github.com/google/pprof", 815 + sum = "h1:4/hN5RUoecvl+RmJRE2YxKWtnnQls6rQjjW5oV7qg2U=", 816 + version = "v0.0.0-20230207041349-798e818bf904", 817 + ) 818 + go_repository( 819 + name = "com_github_google_renameio", 820 + build_file_proto_mode = "disable_global", 821 + importpath = "github.com/google/renameio", 822 + sum = "h1:GOZbcHa3HfsPKPlmyPyN2KEohoMXOhdMbHrvbpl2QaA=", 823 + version = "v0.1.0", 824 + ) 825 + go_repository( 826 + name = "com_github_google_slothfs", 827 + build_file_proto_mode = "disable_global", 828 + importpath = "github.com/google/slothfs", 829 + sum = "h1:iuModVoTuW2lBUobX9QBgqD+ipHbWKug6n8qkJfDtUE=", 830 + version = "v0.0.0-20190717100203-59c1163fd173", 831 + ) 832 + go_repository( 833 + name = "com_github_google_uuid", 834 + build_file_proto_mode = "disable_global", 835 + importpath = "github.com/google/uuid", 836 + sum = "h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=", 837 + version = "v1.3.0", 838 + ) 839 + go_repository( 840 + name = "com_github_googleapis_enterprise_certificate_proxy", 841 + build_file_proto_mode = "disable_global", 842 + importpath = "github.com/googleapis/enterprise-certificate-proxy", 843 + sum = "h1:yk9/cqRKtT9wXZSsRH9aurXEpJX+U6FLtpYTdC3R06k=", 844 + version = "v0.2.3", 845 + ) 846 + go_repository( 847 + name = "com_github_googleapis_gax_go_v2", 848 + build_file_proto_mode = "disable_global", 849 + importpath = "github.com/googleapis/gax-go/v2", 850 + sum = "h1:IcsPKeInNvYi7eqSaDjiZqDDKu5rsmunY0Y1YupQSSQ=", 851 + version = "v2.7.0", 852 + ) 853 + go_repository( 854 + name = "com_github_gopherjs_gopherjs", 855 + build_file_proto_mode = "disable_global", 856 + importpath = "github.com/gopherjs/gopherjs", 857 + sum = "h1:EGx4pi6eqNxGaHF6qqu48+N2wcFQ5qg5FXgOdqsJ5d8=", 858 + version = "v0.0.0-20181017120253-0766667cb4d1", 859 + ) 860 + go_repository( 861 + name = "com_github_gorilla_css", 862 + build_file_proto_mode = "disable_global", 863 + importpath = "github.com/gorilla/css", 864 + sum = "h1:BQqNyPTi50JCFMTw/b67hByjMVXZRwGha6wxVGkeihY=", 865 + version = "v1.0.0", 866 + ) 867 + go_repository( 868 + name = "com_github_gorilla_websocket", 869 + build_file_proto_mode = "disable_global", 870 + importpath = "github.com/gorilla/websocket", 871 + sum = "h1:q7AeDBpnBk8AogcD4DSag/Ukw/KV+YhzLj2bP5HvKCM=", 872 + version = "v1.4.1", 873 + ) 874 + go_repository( 875 + name = "com_github_grafana_regexp", 876 + build_file_proto_mode = "disable_global", 877 + importpath = "github.com/grafana/regexp", 878 + sum = "h1:7aN5cccjIqCLTzedH7MZzRZt5/lsAHch6Z3L2ZGn5FA=", 879 + version = "v0.0.0-20221123153739-15dc172cd2db", 880 + ) 881 + go_repository( 882 + name = "com_github_grpc_ecosystem_grpc_gateway", 883 + build_file_proto_mode = "disable_global", 884 + importpath = "github.com/grpc-ecosystem/grpc-gateway", 885 + sum = "h1:gmcG1KaJ57LophUzW0Hy8NmPhnMZb4M0+kPpLofRdBo=", 886 + version = "v1.16.0", 887 + ) 888 + go_repository( 889 + name = "com_github_grpc_ecosystem_grpc_gateway_v2", 890 + build_file_proto_mode = "disable_global", 891 + importpath = "github.com/grpc-ecosystem/grpc-gateway/v2", 892 + sum = "h1:1JYBfzqrWPcCclBwxFCPAou9n+q86mfnu7NAeHfte7A=", 893 + version = "v2.15.0", 894 + ) 895 + go_repository( 896 + name = "com_github_hashicorp_go_cleanhttp", 897 + build_file_proto_mode = "disable_global", 898 + importpath = "github.com/hashicorp/go-cleanhttp", 899 + sum = "h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9neXJWAZQ=", 900 + version = "v0.5.2", 901 + ) 902 + go_repository( 903 + name = "com_github_hashicorp_go_hclog", 904 + build_file_proto_mode = "disable_global", 905 + importpath = "github.com/hashicorp/go-hclog", 906 + sum = "h1:K4ev2ib4LdQETX5cSZBG0DVLk1jwGqSPXBjdah3veNs=", 907 + version = "v0.16.2", 908 + ) 909 + go_repository( 910 + name = "com_github_hashicorp_go_retryablehttp", 911 + build_file_proto_mode = "disable_global", 912 + importpath = "github.com/hashicorp/go-retryablehttp", 913 + sum = "h1:AcYqCvkpalPnPF2pn0KamgwamS42TqUDDYFRKq/RAd0=", 914 + version = "v0.7.2", 915 + ) 916 + go_repository( 917 + name = "com_github_hashicorp_go_version", 918 + build_file_proto_mode = "disable_global", 919 + importpath = "github.com/hashicorp/go-version", 920 + sum = "h1:3vNe/fWF5CBgRIguda1meWhsZHy3m8gCJ5wx+dIzX/E=", 921 + version = "v1.2.0", 922 + ) 923 + go_repository( 924 + name = "com_github_hashicorp_golang_lru", 925 + build_file_proto_mode = "disable_global", 926 + importpath = "github.com/hashicorp/golang-lru", 927 + sum = "h1:0hERBMJE1eitiLkihrMvRVBYAkpHzc/J3QdDN+dAcgU=", 928 + version = "v0.5.1", 929 + ) 930 + go_repository( 931 + name = "com_github_hashicorp_hcl", 932 + build_file_proto_mode = "disable_global", 933 + importpath = "github.com/hashicorp/hcl", 934 + sum = "h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=", 935 + version = "v1.0.0", 936 + ) 937 + go_repository( 938 + name = "com_github_hdrhistogram_hdrhistogram_go", 939 + build_file_proto_mode = "disable_global", 940 + importpath = "github.com/HdrHistogram/hdrhistogram-go", 941 + sum = "h1:5IcZpTvzydCQeHzK4Ef/D5rrSqwxob0t8PQPMybUNFM=", 942 + version = "v1.1.2", 943 + ) 944 + go_repository( 945 + name = "com_github_hexops_autogold", 946 + build_file_proto_mode = "disable_global", 947 + importpath = "github.com/hexops/autogold", 948 + sum = "h1:YgxF9OHWbEIUjhDbpnLhgVsjUDsiHDTyDfy2lrfdlzo=", 949 + version = "v1.3.1", 950 + ) 951 + go_repository( 952 + name = "com_github_hexops_autogold_v2", 953 + build_file_proto_mode = "disable_global", 954 + importpath = "github.com/hexops/autogold/v2", 955 + sum = "h1:zyrfTlNfyxLpX/zuk8wjTeTYP5AXaFeeRYFEZfHPwao=", 956 + version = "v2.0.3", 957 + ) 958 + go_repository( 959 + name = "com_github_hexops_gotextdiff", 960 + build_file_proto_mode = "disable_global", 961 + importpath = "github.com/hexops/gotextdiff", 962 + sum = "h1:gitA9+qJrrTCsiCl7+kh75nPqQt1cx4ZkudSTLoUqJM=", 963 + version = "v1.0.3", 964 + ) 965 + go_repository( 966 + name = "com_github_hexops_valast", 967 + build_file_proto_mode = "disable_global", 968 + importpath = "github.com/hexops/valast", 969 + sum = "h1:oBoGERMJh6UZdRc6cduE1CTPK+VAdXA59Y1HFgu3sm0=", 970 + version = "v1.4.3", 971 + ) 972 + go_repository( 973 + name = "com_github_hpcloud_tail", 974 + build_file_proto_mode = "disable_global", 975 + importpath = "github.com/hpcloud/tail", 976 + sum = "h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=", 977 + version = "v1.0.0", 978 + ) 979 + go_repository( 980 + name = "com_github_hydrogen18_memlistener", 981 + build_file_proto_mode = "disable_global", 982 + importpath = "github.com/hydrogen18/memlistener", 983 + sum = "h1:KyZDvZ/GGn+r+Y3DKZ7UOQ/TP4xV6HNkrwiVMB1GnNY=", 984 + version = "v0.0.0-20200120041712-dcc25e7acd91", 985 + ) 986 + go_repository( 987 + name = "com_github_ianlancetaylor_demangle", 988 + build_file_proto_mode = "disable_global", 989 + importpath = "github.com/ianlancetaylor/demangle", 990 + sum = "h1:rcanfLhLDA8nozr/K289V1zcntHr3V+SHlXwzz1ZI2g=", 991 + version = "v0.0.0-20220319035150-800ac71e25c2", 992 + ) 993 + go_repository( 994 + name = "com_github_imdario_mergo", 995 + build_file_proto_mode = "disable_global", 996 + importpath = "github.com/imdario/mergo", 997 + sum = "h1:lFzP57bqS/wsqKssCGmtLAb8A0wKjLGrve2q3PPVcBk=", 998 + version = "v0.3.13", 999 + ) 1000 + go_repository( 1001 + name = "com_github_imkira_go_interpol", 1002 + build_file_proto_mode = "disable_global", 1003 + importpath = "github.com/imkira/go-interpol", 1004 + sum = "h1:KIiKr0VSG2CUW1hl1jpiyuzuJeKUUpC8iM1AIE7N1Vk=", 1005 + version = "v1.1.0", 1006 + ) 1007 + go_repository( 1008 + name = "com_github_inconshreveable_mousetrap", 1009 + build_file_proto_mode = "disable_global", 1010 + importpath = "github.com/inconshreveable/mousetrap", 1011 + sum = "h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM=", 1012 + version = "v1.0.0", 1013 + ) 1014 + go_repository( 1015 + name = "com_github_iris_contrib_blackfriday", 1016 + build_file_proto_mode = "disable_global", 1017 + importpath = "github.com/iris-contrib/blackfriday", 1018 + sum = "h1:o5sHQHHm0ToHUlAJSTjW9UWicjJSDDauOOQ2AHuIVp4=", 1019 + version = "v2.0.0+incompatible", 1020 + ) 1021 + go_repository( 1022 + name = "com_github_iris_contrib_go_uuid", 1023 + build_file_proto_mode = "disable_global", 1024 + importpath = "github.com/iris-contrib/go.uuid", 1025 + sum = "h1:XZubAYg61/JwnJNbZilGjf3b3pB80+OQg2qf6c8BfWE=", 1026 + version = "v2.0.0+incompatible", 1027 + ) 1028 + go_repository( 1029 + name = "com_github_iris_contrib_jade", 1030 + build_file_proto_mode = "disable_global", 1031 + importpath = "github.com/iris-contrib/jade", 1032 + sum = "h1:WoYdfyJFfZIUgqNAeOyRfTNQZOksSlZ6+FnXR3AEpX0=", 1033 + version = "v1.1.4", 1034 + ) 1035 + go_repository( 1036 + name = "com_github_iris_contrib_pongo2", 1037 + build_file_proto_mode = "disable_global", 1038 + importpath = "github.com/iris-contrib/pongo2", 1039 + sum = "h1:zGP7pW51oi5eQZMIlGA3I+FHY9/HOQWDB+572yin0to=", 1040 + version = "v0.0.1", 1041 + ) 1042 + go_repository( 1043 + name = "com_github_iris_contrib_schema", 1044 + build_file_proto_mode = "disable_global", 1045 + importpath = "github.com/iris-contrib/schema", 1046 + sum = "h1:CPSBLyx2e91H2yJzPuhGuifVRnZBBJ3pCOMbOvPZaTw=", 1047 + version = "v0.0.6", 1048 + ) 1049 + go_repository( 1050 + name = "com_github_itchyny_gojq", 1051 + build_file_proto_mode = "disable_global", 1052 + importpath = "github.com/itchyny/gojq", 1053 + sum = "h1:YhLueoHhHiN4mkfM+3AyJV6EPcCxKZsOnYf+aVSwaQw=", 1054 + version = "v0.12.11", 1055 + ) 1056 + go_repository( 1057 + name = "com_github_itchyny_timefmt_go", 1058 + build_file_proto_mode = "disable_global", 1059 + importpath = "github.com/itchyny/timefmt-go", 1060 + sum = "h1:G0INE2la8S6ru/ZI5JecgyzbbJNs5lG1RcBqa7Jm6GE=", 1061 + version = "v0.1.5", 1062 + ) 1063 + go_repository( 1064 + name = "com_github_jbenet_go_context", 1065 + build_file_proto_mode = "disable_global", 1066 + importpath = "github.com/jbenet/go-context", 1067 + sum = "h1:BQSFePA1RWJOlocH6Fxy8MmwDt+yVQYULKfN0RoTN8A=", 1068 + version = "v0.0.0-20150711004518-d14ea06fba99", 1069 + ) 1070 + go_repository( 1071 + name = "com_github_jessevdk_go_flags", 1072 + build_file_proto_mode = "disable_global", 1073 + importpath = "github.com/jessevdk/go-flags", 1074 + sum = "h1:1jKYvbxEjfUl0fmqTCOfonvskHHXMjBySTLW4y9LFvc=", 1075 + version = "v1.5.0", 1076 + ) 1077 + go_repository( 1078 + name = "com_github_joker_hpp", 1079 + build_file_proto_mode = "disable_global", 1080 + importpath = "github.com/Joker/hpp", 1081 + sum = "h1:65+iuJYdRXv/XyN62C1uEmmOx3432rNG/rKlX6V7Kkc=", 1082 + version = "v1.0.0", 1083 + ) 1084 + go_repository( 1085 + name = "com_github_josharian_intern", 1086 + build_file_proto_mode = "disable_global", 1087 + importpath = "github.com/josharian/intern", 1088 + sum = "h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY=", 1089 + version = "v1.0.0", 1090 + ) 1091 + go_repository( 1092 + name = "com_github_jpillora_backoff", 1093 + build_file_proto_mode = "disable_global", 1094 + importpath = "github.com/jpillora/backoff", 1095 + sum = "h1:uvFg412JmmHBHw7iwprIxkPMI+sGQ4kzOWsMeHnm2EA=", 1096 + version = "v1.0.0", 1097 + ) 1098 + go_repository( 1099 + name = "com_github_json_iterator_go", 1100 + build_file_proto_mode = "disable_global", 1101 + importpath = "github.com/json-iterator/go", 1102 + sum = "h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM=", 1103 + version = "v1.1.12", 1104 + ) 1105 + go_repository( 1106 + name = "com_github_jstemmer_go_junit_report", 1107 + build_file_proto_mode = "disable_global", 1108 + importpath = "github.com/jstemmer/go-junit-report", 1109 + sum = "h1:6QPYqodiu3GuPL+7mfx+NwDdp2eTkp9IfEUpgAwUN0o=", 1110 + version = "v0.9.1", 1111 + ) 1112 + go_repository( 1113 + name = "com_github_jtolds_gls", 1114 + build_file_proto_mode = "disable_global", 1115 + importpath = "github.com/jtolds/gls", 1116 + sum = "h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo=", 1117 + version = "v4.20.0+incompatible", 1118 + ) 1119 + go_repository( 1120 + name = "com_github_julienschmidt_httprouter", 1121 + build_file_proto_mode = "disable_global", 1122 + importpath = "github.com/julienschmidt/httprouter", 1123 + sum = "h1:U0609e9tgbseu3rBINet9P48AI/D3oJs4dN7jwJOQ1U=", 1124 + version = "v1.3.0", 1125 + ) 1126 + go_repository( 1127 + name = "com_github_jung_kurt_gofpdf", 1128 + build_file_proto_mode = "disable_global", 1129 + importpath = "github.com/jung-kurt/gofpdf", 1130 + sum = "h1:PJr+ZMXIecYc1Ey2zucXdR73SMBtgjPgwa31099IMv0=", 1131 + version = "v1.0.3-0.20190309125859-24315acbbda5", 1132 + ) 1133 + go_repository( 1134 + name = "com_github_k0kubun_colorstring", 1135 + build_file_proto_mode = "disable_global", 1136 + importpath = "github.com/k0kubun/colorstring", 1137 + sum = "h1:uC1QfSlInpQF+M0ao65imhwqKnz3Q2z/d8PWZRMQvDM=", 1138 + version = "v0.0.0-20150214042306-9440f1994b88", 1139 + ) 1140 + go_repository( 1141 + name = "com_github_kataras_blocks", 1142 + build_file_proto_mode = "disable_global", 1143 + importpath = "github.com/kataras/blocks", 1144 + sum = "h1:cF3RDY/vxnSRezc7vLFlQFTYXG/yAr1o7WImJuZbzC4=", 1145 + version = "v0.0.7", 1146 + ) 1147 + go_repository( 1148 + name = "com_github_kataras_golog", 1149 + build_file_proto_mode = "disable_global", 1150 + importpath = "github.com/kataras/golog", 1151 + sum = "h1:0TY5tHn5L5DlRIikepcaRR/6oInIr9AiWsxzt0vvlBE=", 1152 + version = "v0.1.7", 1153 + ) 1154 + go_repository( 1155 + name = "com_github_kataras_iris_v12", 1156 + build_file_proto_mode = "disable_global", 1157 + importpath = "github.com/kataras/iris/v12", 1158 + sum = "h1:grB/oCf5baZhmYIeDMfgN3LYrtEcmK8pbxlRvEZ2pgw=", 1159 + version = "v12.2.0-beta5", 1160 + ) 1161 + go_repository( 1162 + name = "com_github_kataras_neffos", 1163 + build_file_proto_mode = "disable_global", 1164 + importpath = "github.com/kataras/neffos", 1165 + sum = "h1:pdJaTvUG3NQfeMbbVCI8JT2T5goPldyyfUB2PJfh1Bs=", 1166 + version = "v0.0.14", 1167 + ) 1168 + go_repository( 1169 + name = "com_github_kataras_pio", 1170 + build_file_proto_mode = "disable_global", 1171 + importpath = "github.com/kataras/pio", 1172 + sum = "h1:kqreJ5KOEXGMwHAWHDwIl+mjfNCPhAwZPa8gK7MKlyw=", 1173 + version = "v0.0.11", 1174 + ) 1175 + go_repository( 1176 + name = "com_github_kataras_sitemap", 1177 + build_file_proto_mode = "disable_global", 1178 + importpath = "github.com/kataras/sitemap", 1179 + sum = "h1:w71CRMMKYMJh6LR2wTgnk5hSgjVNB9KL60n5e2KHvLY=", 1180 + version = "v0.0.6", 1181 + ) 1182 + go_repository( 1183 + name = "com_github_kataras_tunnel", 1184 + build_file_proto_mode = "disable_global", 1185 + importpath = "github.com/kataras/tunnel", 1186 + sum = "h1:sCAqWuJV7nPzGrlb0os3j49lk2JhILT0rID38NHNLpA=", 1187 + version = "v0.0.4", 1188 + ) 1189 + go_repository( 1190 + name = "com_github_keegancsmith_rpc", 1191 + build_file_proto_mode = "disable_global", 1192 + importpath = "github.com/keegancsmith/rpc", 1193 + sum = "h1:wGWOpjcNrZaY8GDYZJfvyxmlLljm3YQWF+p918DXtDk=", 1194 + version = "v1.3.0", 1195 + ) 1196 + go_repository( 1197 + name = "com_github_keegancsmith_tmpfriend", 1198 + build_file_proto_mode = "disable_global", 1199 + importpath = "github.com/keegancsmith/tmpfriend", 1200 + sum = "h1:xa9SZfAid/jlS3kjwAvVDQFpe6t8SiS0Vl/H51BZYww=", 1201 + version = "v0.0.0-20180423180255-86e88902a513", 1202 + ) 1203 + go_repository( 1204 + name = "com_github_kevinburke_ssh_config", 1205 + build_file_proto_mode = "disable_global", 1206 + importpath = "github.com/kevinburke/ssh_config", 1207 + sum = "h1:x584FjTGwHzMwvHx18PXxbBVzfnxogHaAReU4gf13a4=", 1208 + version = "v1.2.0", 1209 + ) 1210 + go_repository( 1211 + name = "com_github_kisielk_errcheck", 1212 + build_file_proto_mode = "disable_global", 1213 + importpath = "github.com/kisielk/errcheck", 1214 + sum = "h1:e8esj/e4R+SAOwFwN+n3zr0nYeCyeweozKfO23MvHzY=", 1215 + version = "v1.5.0", 1216 + ) 1217 + go_repository( 1218 + name = "com_github_kisielk_gotool", 1219 + build_file_proto_mode = "disable_global", 1220 + importpath = "github.com/kisielk/gotool", 1221 + sum = "h1:AV2c/EiW3KqPNT9ZKl07ehoAGi4C5/01Cfbblndcapg=", 1222 + version = "v1.0.0", 1223 + ) 1224 + go_repository( 1225 + name = "com_github_klauspost_compress", 1226 + build_file_proto_mode = "disable_global", 1227 + importpath = "github.com/klauspost/compress", 1228 + sum = "h1:Lcadnb3RKGin4FYM/orgq0qde+nc15E5Cbqg4B9Sx9c=", 1229 + version = "v1.15.11", 1230 + ) 1231 + go_repository( 1232 + name = "com_github_klauspost_cpuid", 1233 + build_file_proto_mode = "disable_global", 1234 + importpath = "github.com/klauspost/cpuid", 1235 + sum = "h1:vJi+O/nMdFt0vqm8NZBI6wzALWdA2X+egi0ogNyrC/w=", 1236 + version = "v1.2.1", 1237 + ) 1238 + go_repository( 1239 + name = "com_github_kr_pretty", 1240 + build_file_proto_mode = "disable_global", 1241 + importpath = "github.com/kr/pretty", 1242 + sum = "h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=", 1243 + version = "v0.3.1", 1244 + ) 1245 + go_repository( 1246 + name = "com_github_kr_pty", 1247 + build_file_proto_mode = "disable_global", 1248 + importpath = "github.com/kr/pty", 1249 + sum = "h1:VkoXIwSboBpnk99O/KFauAEILuNHv5DVFKZMBN/gUgw=", 1250 + version = "v1.1.1", 1251 + ) 1252 + go_repository( 1253 + name = "com_github_kr_text", 1254 + build_file_proto_mode = "disable_global", 1255 + importpath = "github.com/kr/text", 1256 + sum = "h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=", 1257 + version = "v0.2.0", 1258 + ) 1259 + go_repository( 1260 + name = "com_github_kylelemons_godebug", 1261 + build_file_proto_mode = "disable_global", 1262 + importpath = "github.com/kylelemons/godebug", 1263 + sum = "h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc=", 1264 + version = "v1.1.0", 1265 + ) 1266 + go_repository( 1267 + name = "com_github_labstack_echo_v4", 1268 + build_file_proto_mode = "disable_global", 1269 + importpath = "github.com/labstack/echo/v4", 1270 + sum = "h1:wPOF1CE6gvt/kmbMR4dGzWvHMPT+sAEUJOwOTtvITVY=", 1271 + version = "v4.9.0", 1272 + ) 1273 + go_repository( 1274 + name = "com_github_labstack_gommon", 1275 + build_file_proto_mode = "disable_global", 1276 + importpath = "github.com/labstack/gommon", 1277 + sum = "h1:OomWaJXm7xR6L1HmEtGyQf26TEn7V6X88mktX9kee9o=", 1278 + version = "v0.3.1", 1279 + ) 1280 + go_repository( 1281 + name = "com_github_leodido_go_urn", 1282 + build_file_proto_mode = "disable_global", 1283 + importpath = "github.com/leodido/go-urn", 1284 + sum = "h1:BqpAaACuzVSgi/VLzGZIobT2z4v53pjosyNd9Yv6n/w=", 1285 + version = "v1.2.1", 1286 + ) 1287 + go_repository( 1288 + name = "com_github_lufia_plan9stats", 1289 + build_file_proto_mode = "disable_global", 1290 + importpath = "github.com/lufia/plan9stats", 1291 + sum = "h1:6E+4a0GO5zZEnZ81pIr0yLvtUWk2if982qA3F3QD6H4=", 1292 + version = "v0.0.0-20211012122336-39d0f177ccd0", 1293 + ) 1294 + go_repository( 1295 + name = "com_github_magiconair_properties", 1296 + build_file_proto_mode = "disable_global", 1297 + importpath = "github.com/magiconair/properties", 1298 + sum = "h1:LLgXmsheXeRoUOBOjtwPQCWIYqM/LU1ayDtDePerRcY=", 1299 + version = "v1.8.0", 1300 + ) 1301 + go_repository( 1302 + name = "com_github_mailgun_raymond_v2", 1303 + build_file_proto_mode = "disable_global", 1304 + importpath = "github.com/mailgun/raymond/v2", 1305 + sum = "h1:aOYHhvTpF5USySJ0o7cpPno/Uh2I5qg2115K25A+Ft4=", 1306 + version = "v2.0.46", 1307 + ) 1308 + go_repository( 1309 + name = "com_github_mailru_easyjson", 1310 + build_file_proto_mode = "disable_global", 1311 + importpath = "github.com/mailru/easyjson", 1312 + sum = "h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0=", 1313 + version = "v0.7.7", 1314 + ) 1315 + go_repository( 1316 + name = "com_github_matryer_is", 1317 + build_file_proto_mode = "disable_global", 1318 + importpath = "github.com/matryer/is", 1319 + sum = "h1:92UTHpy8CDwaJ08GqLDzhhuixiBUUD1p3AU6PHddz4A=", 1320 + version = "v1.2.0", 1321 + ) 1322 + go_repository( 1323 + name = "com_github_mattn_go_colorable", 1324 + build_file_proto_mode = "disable_global", 1325 + importpath = "github.com/mattn/go-colorable", 1326 + sum = "h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA=", 1327 + version = "v0.1.13", 1328 + ) 1329 + go_repository( 1330 + name = "com_github_mattn_go_isatty", 1331 + build_file_proto_mode = "disable_global", 1332 + importpath = "github.com/mattn/go-isatty", 1333 + sum = "h1:BTarxUcIeDqL27Mc+vyvdWYSL28zpIhv3RoTdsLMPng=", 1334 + version = "v0.0.17", 1335 + ) 1336 + go_repository( 1337 + name = "com_github_mattn_goveralls", 1338 + build_file_proto_mode = "disable_global", 1339 + importpath = "github.com/mattn/goveralls", 1340 + sum = "h1:7eJB6EqsPhRVxvwEXGnqdO2sJI0PTsrWoTMXEk9/OQc=", 1341 + version = "v0.0.2", 1342 + ) 1343 + go_repository( 1344 + name = "com_github_matttproud_golang_protobuf_extensions", 1345 + build_file_proto_mode = "disable_global", 1346 + importpath = "github.com/matttproud/golang_protobuf_extensions", 1347 + sum = "h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo=", 1348 + version = "v1.0.4", 1349 + ) 1350 + go_repository( 1351 + name = "com_github_mediocregopher_radix_v3", 1352 + build_file_proto_mode = "disable_global", 1353 + importpath = "github.com/mediocregopher/radix/v3", 1354 + sum = "h1:galbPBjIwmyREgwGCfQEN4X8lxbJnKBYurgz+VfcStA=", 1355 + version = "v3.4.2", 1356 + ) 1357 + go_repository( 1358 + name = "com_github_microcosm_cc_bluemonday", 1359 + build_file_proto_mode = "disable_global", 1360 + importpath = "github.com/microcosm-cc/bluemonday", 1361 + sum = "h1:dNH3e4PSyE4vNX+KlRGHT5KrSvjeUkoNPwEORjffHJg=", 1362 + version = "v1.0.21", 1363 + ) 1364 + go_repository( 1365 + name = "com_github_microsoft_go_winio", 1366 + build_file_proto_mode = "disable_global", 1367 + importpath = "github.com/Microsoft/go-winio", 1368 + sum = "h1:slsWYD/zyx7lCXoZVlvQrj0hPTM1HI4+v1sIda2yDvg=", 1369 + version = "v0.6.0", 1370 + ) 1371 + go_repository( 1372 + name = "com_github_mitchellh_go_homedir", 1373 + build_file_proto_mode = "disable_global", 1374 + importpath = "github.com/mitchellh/go-homedir", 1375 + sum = "h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y=", 1376 + version = "v1.1.0", 1377 + ) 1378 + go_repository( 1379 + name = "com_github_mitchellh_mapstructure", 1380 + build_file_proto_mode = "disable_global", 1381 + importpath = "github.com/mitchellh/mapstructure", 1382 + sum = "h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY=", 1383 + version = "v1.5.0", 1384 + ) 1385 + go_repository( 1386 + name = "com_github_moby_sys_mountinfo", 1387 + build_file_proto_mode = "disable_global", 1388 + importpath = "github.com/moby/sys/mountinfo", 1389 + sum = "h1:BzJjoreD5BMFNmD9Rus6gdd1pLuecOFPt8wC+Vygl78=", 1390 + version = "v0.6.2", 1391 + ) 1392 + go_repository( 1393 + name = "com_github_modern_go_concurrent", 1394 + build_file_proto_mode = "disable_global", 1395 + importpath = "github.com/modern-go/concurrent", 1396 + sum = "h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=", 1397 + version = "v0.0.0-20180306012644-bacd9c7ef1dd", 1398 + ) 1399 + go_repository( 1400 + name = "com_github_modern_go_reflect2", 1401 + build_file_proto_mode = "disable_global", 1402 + importpath = "github.com/modern-go/reflect2", 1403 + sum = "h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M=", 1404 + version = "v1.0.2", 1405 + ) 1406 + go_repository( 1407 + name = "com_github_moul_http2curl", 1408 + build_file_proto_mode = "disable_global", 1409 + importpath = "github.com/moul/http2curl", 1410 + sum = "h1:dRMWoAtb+ePxMlLkrCbAqh4TlPHXvoGUSQ323/9Zahs=", 1411 + version = "v1.0.0", 1412 + ) 1413 + go_repository( 1414 + name = "com_github_mschoch_smat", 1415 + build_file_proto_mode = "disable_global", 1416 + importpath = "github.com/mschoch/smat", 1417 + sum = "h1:8imxQsjDm8yFEAVBe7azKmKSgzSkZXDuKkSq9374khM=", 1418 + version = "v0.2.0", 1419 + ) 1420 + go_repository( 1421 + name = "com_github_mwitkow_go_conntrack", 1422 + build_file_proto_mode = "disable_global", 1423 + importpath = "github.com/mwitkow/go-conntrack", 1424 + sum = "h1:KUppIJq7/+SVif2QVs3tOP0zanoHgBEVAwHxUSIzRqU=", 1425 + version = "v0.0.0-20190716064945-2f068394615f", 1426 + ) 1427 + go_repository( 1428 + name = "com_github_mxk_go_flowrate", 1429 + build_file_proto_mode = "disable_global", 1430 + importpath = "github.com/mxk/go-flowrate", 1431 + sum = "h1:y5//uYreIhSUg3J1GEMiLbxo1LJaP8RfCpH6pymGZus=", 1432 + version = "v0.0.0-20140419014527-cca7078d478f", 1433 + ) 1434 + go_repository( 1435 + name = "com_github_nats_io_jwt", 1436 + build_file_proto_mode = "disable_global", 1437 + importpath = "github.com/nats-io/jwt", 1438 + sum = "h1:xdnzwFETV++jNc4W1mw//qFyJGb2ABOombmZJQS4+Qo=", 1439 + version = "v0.3.0", 1440 + ) 1441 + go_repository( 1442 + name = "com_github_nats_io_nats_go", 1443 + build_file_proto_mode = "disable_global", 1444 + importpath = "github.com/nats-io/nats.go", 1445 + sum = "h1:ik3HbLhZ0YABLto7iX80pZLPw/6dx3T+++MZJwLnMrQ=", 1446 + version = "v1.9.1", 1447 + ) 1448 + go_repository( 1449 + name = "com_github_nats_io_nkeys", 1450 + build_file_proto_mode = "disable_global", 1451 + importpath = "github.com/nats-io/nkeys", 1452 + sum = "h1:qMd4+pRHgdr1nAClu+2h/2a5F2TmKcCzjCDazVgRoX4=", 1453 + version = "v0.1.0", 1454 + ) 1455 + go_repository( 1456 + name = "com_github_nats_io_nuid", 1457 + build_file_proto_mode = "disable_global", 1458 + importpath = "github.com/nats-io/nuid", 1459 + sum = "h1:5iA8DT8V7q8WK2EScv2padNa/rTESc1KdnPw4TC2paw=", 1460 + version = "v1.0.1", 1461 + ) 1462 + go_repository( 1463 + name = "com_github_niemeyer_pretty", 1464 + build_file_proto_mode = "disable_global", 1465 + importpath = "github.com/niemeyer/pretty", 1466 + sum = "h1:fD57ERR4JtEqsWbfPhv4DMiApHyliiK5xCTNVSPiaAs=", 1467 + version = "v0.0.0-20200227124842-a10e7caefd8e", 1468 + ) 1469 + go_repository( 1470 + name = "com_github_nightlyone_lockfile", 1471 + build_file_proto_mode = "disable_global", 1472 + importpath = "github.com/nightlyone/lockfile", 1473 + sum = "h1:RHep2cFKK4PonZJDdEl4GmkabuhbsRMgk/k3uAmxBiA=", 1474 + version = "v1.0.0", 1475 + ) 1476 + go_repository( 1477 + name = "com_github_oneofone_xxhash", 1478 + build_file_proto_mode = "disable_global", 1479 + importpath = "github.com/OneOfOne/xxhash", 1480 + sum = "h1:KMrpdQIwFcEqXDklaen+P1axHaj9BSKzvpUUfnHldSE=", 1481 + version = "v1.2.2", 1482 + ) 1483 + go_repository( 1484 + name = "com_github_onsi_ginkgo", 1485 + build_file_proto_mode = "disable_global", 1486 + importpath = "github.com/onsi/ginkgo", 1487 + sum = "h1:OoxbjfXVZyod1fmWYhI7SEyaD8B00ynP3T+D5GiyHOY=", 1488 + version = "v1.10.3", 1489 + ) 1490 + go_repository( 1491 + name = "com_github_onsi_gomega", 1492 + build_file_proto_mode = "disable_global", 1493 + importpath = "github.com/onsi/gomega", 1494 + sum = "h1:K0jcRCwNQM3vFGh1ppMtDh/+7ApJrjldlX8fA0jDTLQ=", 1495 + version = "v1.7.1", 1496 + ) 1497 + go_repository( 1498 + name = "com_github_opentracing_opentracing_go", 1499 + build_file_proto_mode = "disable_global", 1500 + importpath = "github.com/opentracing/opentracing-go", 1501 + sum = "h1:uEJPy/1a5RIPAJ0Ov+OIO8OxWu77jEv+1B0VhjKrZUs=", 1502 + version = "v1.2.0", 1503 + ) 1504 + go_repository( 1505 + name = "com_github_pelletier_go_toml", 1506 + build_file_proto_mode = "disable_global", 1507 + importpath = "github.com/pelletier/go-toml", 1508 + sum = "h1:4yBQzkHv+7BHq2PQUZF3Mx0IYxG7LsP222s7Agd3ve8=", 1509 + version = "v1.9.5", 1510 + ) 1511 + go_repository( 1512 + name = "com_github_pelletier_go_toml_v2", 1513 + build_file_proto_mode = "disable_global", 1514 + importpath = "github.com/pelletier/go-toml/v2", 1515 + sum = "h1:ipoSadvV8oGUjnUbMub59IDPPwfxF694nG/jwbMiyQg=", 1516 + version = "v2.0.5", 1517 + ) 1518 + go_repository( 1519 + name = "com_github_peterbourgon_ff_v3", 1520 + build_file_proto_mode = "disable_global", 1521 + importpath = "github.com/peterbourgon/ff/v3", 1522 + sum = "h1:PaKe7GW8orVFh8Unb5jNHS+JZBwWUMa2se0HM6/BI24=", 1523 + version = "v3.3.0", 1524 + ) 1525 + go_repository( 1526 + name = "com_github_pingcap_errors", 1527 + build_file_proto_mode = "disable_global", 1528 + importpath = "github.com/pingcap/errors", 1529 + sum = "h1:lFuQV/oaUMGcD2tqt+01ROSmJs75VG1ToEOkZIZ4nE4=", 1530 + version = "v0.11.4", 1531 + ) 1532 + go_repository( 1533 + name = "com_github_pjbgf_sha1cd", 1534 + build_file_proto_mode = "disable_global", 1535 + importpath = "github.com/pjbgf/sha1cd", 1536 + sum = "h1:uKQP/7QOzNtKYH7UTohZLcjF5/55EnTw0jO/Ru4jZwI=", 1537 + version = "v0.2.3", 1538 + ) 1539 + go_repository( 1540 + name = "com_github_pkg_diff", 1541 + build_file_proto_mode = "disable_global", 1542 + importpath = "github.com/pkg/diff", 1543 + sum = "h1:aoZm08cpOy4WuID//EZDgcC4zIxODThtZNPirFr42+A=", 1544 + version = "v0.0.0-20210226163009-20ebb0f2a09e", 1545 + ) 1546 + go_repository( 1547 + name = "com_github_pkg_errors", 1548 + build_file_proto_mode = "disable_global", 1549 + importpath = "github.com/pkg/errors", 1550 + sum = "h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=", 1551 + version = "v0.9.1", 1552 + ) 1553 + go_repository( 1554 + name = "com_github_pmezard_go_difflib", 1555 + build_file_proto_mode = "disable_global", 1556 + importpath = "github.com/pmezard/go-difflib", 1557 + sum = "h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=", 1558 + version = "v1.0.0", 1559 + ) 1560 + go_repository( 1561 + name = "com_github_power_devops_perfstat", 1562 + build_file_proto_mode = "disable_global", 1563 + importpath = "github.com/power-devops/perfstat", 1564 + sum = "h1:0LFwY6Q3gMACTjAbMZBjXAqTOzOwFaj2Ld6cjeQ7Rig=", 1565 + version = "v0.0.0-20221212215047-62379fc7944b", 1566 + ) 1567 + go_repository( 1568 + name = "com_github_prashantv_gostub", 1569 + build_file_proto_mode = "disable_global", 1570 + importpath = "github.com/prashantv/gostub", 1571 + sum = "h1:BTyx3RfQjRHnUWaGF9oQos79AlQ5k8WNktv7VGvVH4g=", 1572 + version = "v1.1.0", 1573 + ) 1574 + go_repository( 1575 + name = "com_github_prometheus_client_golang", 1576 + build_file_proto_mode = "disable_global", 1577 + importpath = "github.com/prometheus/client_golang", 1578 + sum = "h1:nJdhIvne2eSX/XRAFV9PcvFFRbrjbcTUj0VP62TMhnw=", 1579 + version = "v1.14.0", 1580 + ) 1581 + go_repository( 1582 + name = "com_github_prometheus_client_model", 1583 + build_file_proto_mode = "disable_global", 1584 + importpath = "github.com/prometheus/client_model", 1585 + sum = "h1:UBgGFHqYdG/TPFD1B1ogZywDqEkwp3fBMvqdiQ7Xew4=", 1586 + version = "v0.3.0", 1587 + ) 1588 + go_repository( 1589 + name = "com_github_prometheus_common", 1590 + build_file_proto_mode = "disable_global", 1591 + importpath = "github.com/prometheus/common", 1592 + sum = "h1:oOyhkDq05hPZKItWVBkJ6g6AtGxi+fy7F4JvUV8uhsI=", 1593 + version = "v0.39.0", 1594 + ) 1595 + go_repository( 1596 + name = "com_github_prometheus_procfs", 1597 + build_file_proto_mode = "disable_global", 1598 + importpath = "github.com/prometheus/procfs", 1599 + sum = "h1:wzCHvIvM5SxWqYvwgVL7yJY8Lz3PKn49KQtpgMYJfhI=", 1600 + version = "v0.9.0", 1601 + ) 1602 + go_repository( 1603 + name = "com_github_protonmail_go_crypto", 1604 + build_file_proto_mode = "disable_global", 1605 + importpath = "github.com/ProtonMail/go-crypto", 1606 + sum = "h1:OUJ54Fkd+AQXYmr9eOUxZfWNzpK3/e/KD40qa2rKHS4=", 1607 + version = "v0.0.0-20230214155104-81033d7f4442", 1608 + ) 1609 + go_repository( 1610 + name = "com_github_roaringbitmap_roaring", 1611 + build_file_proto_mode = "disable_global", 1612 + importpath = "github.com/RoaringBitmap/roaring", 1613 + sum = "h1:yqreLINqIrX22ErkKI0vY47/ivtJr6n+kMhVOVmhWBY=", 1614 + version = "v1.2.3", 1615 + ) 1616 + go_repository( 1617 + name = "com_github_rogpeppe_fastuuid", 1618 + build_file_proto_mode = "disable_global", 1619 + importpath = "github.com/rogpeppe/fastuuid", 1620 + sum = "h1:Ppwyp6VYCF1nvBTXL3trRso7mXMlRrw9ooo375wvi2s=", 1621 + version = "v1.2.0", 1622 + ) 1623 + go_repository( 1624 + name = "com_github_rogpeppe_go_internal", 1625 + build_file_proto_mode = "disable_global", 1626 + importpath = "github.com/rogpeppe/go-internal", 1627 + sum = "h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8=", 1628 + version = "v1.9.0", 1629 + ) 1630 + go_repository( 1631 + name = "com_github_rs_xid", 1632 + build_file_proto_mode = "disable_global", 1633 + importpath = "github.com/rs/xid", 1634 + sum = "h1:qd7wPTDkN6KQx2VmMBLrpHkiyQwgFXRnkOLacUiaSNY=", 1635 + version = "v1.4.0", 1636 + ) 1637 + go_repository( 1638 + name = "com_github_russross_blackfriday", 1639 + build_file_proto_mode = "disable_global", 1640 + importpath = "github.com/russross/blackfriday", 1641 + sum = "h1:HyvC0ARfnZBqnXwABFeSZHpKvJHJJfPz81GNueLj0oo=", 1642 + version = "v1.5.2", 1643 + ) 1644 + go_repository( 1645 + name = "com_github_russross_blackfriday_v2", 1646 + build_file_proto_mode = "disable_global", 1647 + importpath = "github.com/russross/blackfriday/v2", 1648 + sum = "h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk=", 1649 + version = "v2.1.0", 1650 + ) 1651 + go_repository( 1652 + name = "com_github_ryanuber_columnize", 1653 + build_file_proto_mode = "disable_global", 1654 + importpath = "github.com/ryanuber/columnize", 1655 + sum = "h1:j1Wcmh8OrK4Q7GXY+V7SVSY8nUWQxHW5TkBe7YUl+2s=", 1656 + version = "v2.1.0+incompatible", 1657 + ) 1658 + go_repository( 1659 + name = "com_github_schollz_closestmatch", 1660 + build_file_proto_mode = "disable_global", 1661 + importpath = "github.com/schollz/closestmatch", 1662 + sum = "h1:Uel2GXEpJqOWBrlyI+oY9LTiyyjYS17cCYRqP13/SHk=", 1663 + version = "v2.1.0+incompatible", 1664 + ) 1665 + go_repository( 1666 + name = "com_github_sergi_go_diff", 1667 + build_file_proto_mode = "disable_global", 1668 + importpath = "github.com/sergi/go-diff", 1669 + sum = "h1:xkr+Oxo4BOQKmkn/B9eMK0g5Kg/983T9DqqPHwYqD+8=", 1670 + version = "v1.3.1", 1671 + ) 1672 + go_repository( 1673 + name = "com_github_shirou_gopsutil_v3", 1674 + build_file_proto_mode = "disable_global", 1675 + importpath = "github.com/shirou/gopsutil/v3", 1676 + sum = "h1:a9KKO+kGLKEvcPIs4W62v0nu3sciVDOOOPUD0Hz7z/4=", 1677 + version = "v3.23.1", 1678 + ) 1679 + go_repository( 1680 + name = "com_github_shopify_goreferrer", 1681 + build_file_proto_mode = "disable_global", 1682 + importpath = "github.com/Shopify/goreferrer", 1683 + sum = "h1:KkH3I3sJuOLP3TjA/dfr4NAY8bghDwnXiU7cTKxQqo0=", 1684 + version = "v0.0.0-20220729165902-8cddb4f5de06", 1685 + ) 1686 + go_repository( 1687 + name = "com_github_shurcool_sanitized_anchor_name", 1688 + build_file_proto_mode = "disable_global", 1689 + importpath = "github.com/shurcooL/sanitized_anchor_name", 1690 + sum = "h1:PdmoCO6wvbs+7yrJyMORt4/BmY5IYyJwS/kOiWx8mHo=", 1691 + version = "v1.0.0", 1692 + ) 1693 + go_repository( 1694 + name = "com_github_sirupsen_logrus", 1695 + build_file_proto_mode = "disable_global", 1696 + importpath = "github.com/sirupsen/logrus", 1697 + sum = "h1:trlNQbNUG3OdDrDil03MCb1H2o9nJ1x4/5LYw7byDE0=", 1698 + version = "v1.9.0", 1699 + ) 1700 + go_repository( 1701 + name = "com_github_skeema_knownhosts", 1702 + build_file_proto_mode = "disable_global", 1703 + importpath = "github.com/skeema/knownhosts", 1704 + sum = "h1:Wvr9V0MxhjRbl3f9nMnKnFfiWTJmtECJ9Njkea3ysW0=", 1705 + version = "v1.1.0", 1706 + ) 1707 + go_repository( 1708 + name = "com_github_smartystreets_assertions", 1709 + build_file_proto_mode = "disable_global", 1710 + importpath = "github.com/smartystreets/assertions", 1711 + sum = "h1:zE9ykElWQ6/NYmHa3jpm/yHnI4xSofP+UP6SpjHcSeM=", 1712 + version = "v0.0.0-20180927180507-b2de0cb4f26d", 1713 + ) 1714 + go_repository( 1715 + name = "com_github_smartystreets_goconvey", 1716 + build_file_proto_mode = "disable_global", 1717 + importpath = "github.com/smartystreets/goconvey", 1718 + sum = "h1:fv0U8FUIMPNf1L9lnHLvLhgicrIVChEkdzIKYqbNC9s=", 1719 + version = "v1.6.4", 1720 + ) 1721 + go_repository( 1722 + name = "com_github_sourcegraph_go_ctags", 1723 + build_file_proto_mode = "disable_global", 1724 + importpath = "github.com/sourcegraph/go-ctags", 1725 + sum = "h1:tsWE3F3StWvnwLnC4JWb0zX0UHY9GULQtu/aoQvLJvI=", 1726 + version = "v0.0.0-20230111110657-c27675da7f71", 1727 + ) 1728 + go_repository( 1729 + name = "com_github_sourcegraph_log", 1730 + build_file_proto_mode = "disable_global", 1731 + importpath = "github.com/sourcegraph/log", 1732 + sum = "h1:WH7VzDVGCu2psjD2hJfIn6w/Js/Dvigk3qKWSlJWY34=", 1733 + version = "v0.0.0-20230203201409-49ac5ad3f2ce", 1734 + ) 1735 + go_repository( 1736 + name = "com_github_sourcegraph_mountinfo", 1737 + build_file_proto_mode = "disable_global", 1738 + importpath = "github.com/sourcegraph/mountinfo", 1739 + sum = "h1:NSYSPQOE7yyyytLbKQHjxSkPnBagaGQblgVMQrQ1je0=", 1740 + version = "v0.0.0-20230106004439-7026e28cef67", 1741 + ) 1742 + go_repository( 1743 + name = "com_github_spaolacci_murmur3", 1744 + build_file_proto_mode = "disable_global", 1745 + importpath = "github.com/spaolacci/murmur3", 1746 + sum = "h1:qLC7fQah7D6K1B0ujays3HV9gkFtllcxhzImRR7ArPQ=", 1747 + version = "v0.0.0-20180118202830-f09979ecbc72", 1748 + ) 1749 + go_repository( 1750 + name = "com_github_spf13_afero", 1751 + build_file_proto_mode = "disable_global", 1752 + importpath = "github.com/spf13/afero", 1753 + sum = "h1:m8/z1t7/fwjysjQRYbP0RD+bUIF/8tJwPdEZsI83ACI=", 1754 + version = "v1.1.2", 1755 + ) 1756 + go_repository( 1757 + name = "com_github_spf13_cast", 1758 + build_file_proto_mode = "disable_global", 1759 + importpath = "github.com/spf13/cast", 1760 + sum = "h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8=", 1761 + version = "v1.3.0", 1762 + ) 1763 + go_repository( 1764 + name = "com_github_spf13_cobra", 1765 + build_file_proto_mode = "disable_global", 1766 + importpath = "github.com/spf13/cobra", 1767 + sum = "h1:f0B+LkLX6DtmRH1isoNA9VTtNUK9K8xYd28JNNfOv/s=", 1768 + version = "v0.0.5", 1769 + ) 1770 + go_repository( 1771 + name = "com_github_spf13_jwalterweatherman", 1772 + build_file_proto_mode = "disable_global", 1773 + importpath = "github.com/spf13/jwalterweatherman", 1774 + sum = "h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk=", 1775 + version = "v1.0.0", 1776 + ) 1777 + go_repository( 1778 + name = "com_github_spf13_pflag", 1779 + build_file_proto_mode = "disable_global", 1780 + importpath = "github.com/spf13/pflag", 1781 + sum = "h1:zPAT6CGy6wXeQ7NtTnaTerfKOsV6V6F8agHXFiazDkg=", 1782 + version = "v1.0.3", 1783 + ) 1784 + go_repository( 1785 + name = "com_github_spf13_viper", 1786 + build_file_proto_mode = "disable_global", 1787 + importpath = "github.com/spf13/viper", 1788 + sum = "h1:VUFqw5KcqRf7i70GOzW7N+Q7+gxVBkSSqiXB12+JQ4M=", 1789 + version = "v1.3.2", 1790 + ) 1791 + go_repository( 1792 + name = "com_github_stretchr_objx", 1793 + build_file_proto_mode = "disable_global", 1794 + importpath = "github.com/stretchr/objx", 1795 + sum = "h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c=", 1796 + version = "v0.5.0", 1797 + ) 1798 + go_repository( 1799 + name = "com_github_stretchr_testify", 1800 + build_file_proto_mode = "disable_global", 1801 + importpath = "github.com/stretchr/testify", 1802 + sum = "h1:w7B6lhMri9wdJUVmEZPGGhZzrYTPvgJArz7wNPgYKsk=", 1803 + version = "v1.8.1", 1804 + ) 1805 + go_repository( 1806 + name = "com_github_tdewolff_minify_v2", 1807 + build_file_proto_mode = "disable_global", 1808 + importpath = "github.com/tdewolff/minify/v2", 1809 + sum = "h1:kejsHQMM17n6/gwdw53qsi6lg0TGddZADVyQOz1KMdE=", 1810 + version = "v2.12.4", 1811 + ) 1812 + go_repository( 1813 + name = "com_github_tdewolff_parse_v2", 1814 + build_file_proto_mode = "disable_global", 1815 + importpath = "github.com/tdewolff/parse/v2", 1816 + sum = "h1:KCkDvNUMof10e3QExio9OPZJT8SbdKojLBumw8YZycQ=", 1817 + version = "v2.6.4", 1818 + ) 1819 + go_repository( 1820 + name = "com_github_tklauser_go_sysconf", 1821 + build_file_proto_mode = "disable_global", 1822 + importpath = "github.com/tklauser/go-sysconf", 1823 + sum = "h1:89WgdJhk5SNwJfu+GKyYveZ4IaJ7xAkecBo+KdJV0CM=", 1824 + version = "v0.3.11", 1825 + ) 1826 + go_repository( 1827 + name = "com_github_tklauser_numcpus", 1828 + build_file_proto_mode = "disable_global", 1829 + importpath = "github.com/tklauser/numcpus", 1830 + sum = "h1:kebhY2Qt+3U6RNK7UqpYNA+tJ23IBEGKkB7JQBfDYms=", 1831 + version = "v0.6.0", 1832 + ) 1833 + go_repository( 1834 + name = "com_github_uber_jaeger_client_go", 1835 + build_file_proto_mode = "disable_global", 1836 + importpath = "github.com/uber/jaeger-client-go", 1837 + sum = "h1:D6wyKGCecFaSRUpo8lCVbaOOb6ThwMmTEbhRwtKR97o=", 1838 + version = "v2.30.0+incompatible", 1839 + ) 1840 + go_repository( 1841 + name = "com_github_uber_jaeger_lib", 1842 + build_file_proto_mode = "disable_global", 1843 + importpath = "github.com/uber/jaeger-lib", 1844 + sum = "h1:td4jdvLcExb4cBISKIpHuGoVXh+dVKhn2Um6rjCsSsg=", 1845 + version = "v2.4.1+incompatible", 1846 + ) 1847 + go_repository( 1848 + name = "com_github_ugorji_go", 1849 + build_file_proto_mode = "disable_global", 1850 + importpath = "github.com/ugorji/go", 1851 + sum = "h1:/68gy2h+1mWMrwZFeD1kQialdSzAb432dtpeJ42ovdo=", 1852 + version = "v1.1.7", 1853 + ) 1854 + go_repository( 1855 + name = "com_github_ugorji_go_codec", 1856 + build_file_proto_mode = "disable_global", 1857 + importpath = "github.com/ugorji/go/codec", 1858 + sum = "h1:YPXUKf7fYbp/y8xloBqZOw2qaVggbfwMlI8WM3wZUJ0=", 1859 + version = "v1.2.7", 1860 + ) 1861 + go_repository( 1862 + name = "com_github_urfave_negroni", 1863 + build_file_proto_mode = "disable_global", 1864 + importpath = "github.com/urfave/negroni", 1865 + sum = "h1:kIimOitoypq34K7TG7DUaJ9kq/N4Ofuwi1sjz0KipXc=", 1866 + version = "v1.0.0", 1867 + ) 1868 + go_repository( 1869 + name = "com_github_valyala_bytebufferpool", 1870 + build_file_proto_mode = "disable_global", 1871 + importpath = "github.com/valyala/bytebufferpool", 1872 + sum = "h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw=", 1873 + version = "v1.0.0", 1874 + ) 1875 + go_repository( 1876 + name = "com_github_valyala_fasthttp", 1877 + build_file_proto_mode = "disable_global", 1878 + importpath = "github.com/valyala/fasthttp", 1879 + sum = "h1:CRq/00MfruPGFLTQKY8b+8SfdK60TxNztjRMnH0t1Yc=", 1880 + version = "v1.40.0", 1881 + ) 1882 + go_repository( 1883 + name = "com_github_valyala_fasttemplate", 1884 + build_file_proto_mode = "disable_global", 1885 + importpath = "github.com/valyala/fasttemplate", 1886 + sum = "h1:TVEnxayobAdVkhQfrfes2IzOB6o+z4roRkPF52WA1u4=", 1887 + version = "v1.2.1", 1888 + ) 1889 + go_repository( 1890 + name = "com_github_valyala_tcplisten", 1891 + build_file_proto_mode = "disable_global", 1892 + importpath = "github.com/valyala/tcplisten", 1893 + sum = "h1:0R4NLDRDZX6JcmhJgXi5E4b8Wg84ihbmUKp/GvSPEzc=", 1894 + version = "v0.0.0-20161114210144-ceec8f93295a", 1895 + ) 1896 + go_repository( 1897 + name = "com_github_vmihailenco_msgpack_v5", 1898 + build_file_proto_mode = "disable_global", 1899 + importpath = "github.com/vmihailenco/msgpack/v5", 1900 + sum = "h1:5gO0H1iULLWGhs2H5tbAHIZTV8/cYafcFOr9znI5mJU=", 1901 + version = "v5.3.5", 1902 + ) 1903 + go_repository( 1904 + name = "com_github_vmihailenco_tagparser_v2", 1905 + build_file_proto_mode = "disable_global", 1906 + importpath = "github.com/vmihailenco/tagparser/v2", 1907 + sum = "h1:y09buUbR+b5aycVFQs/g70pqKVZNBmxwAhO7/IwNM9g=", 1908 + version = "v2.0.0", 1909 + ) 1910 + go_repository( 1911 + name = "com_github_xanzy_go_gitlab", 1912 + build_file_proto_mode = "disable_global", 1913 + importpath = "github.com/xanzy/go-gitlab", 1914 + sum = "h1:2d6RwUrI3ZC2Xh9urnqiiHCLzWNndrGtje3yByZubdQ=", 1915 + version = "v0.80.0", 1916 + ) 1917 + go_repository( 1918 + name = "com_github_xanzy_ssh_agent", 1919 + build_file_proto_mode = "disable_global", 1920 + importpath = "github.com/xanzy/ssh-agent", 1921 + sum = "h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM=", 1922 + version = "v0.3.3", 1923 + ) 1924 + go_repository( 1925 + name = "com_github_xeipuuv_gojsonpointer", 1926 + build_file_proto_mode = "disable_global", 1927 + importpath = "github.com/xeipuuv/gojsonpointer", 1928 + sum = "h1:J9EGpcZtP0E/raorCMxlFGSTBrsSlaDGf3jU/qvAE2c=", 1929 + version = "v0.0.0-20180127040702-4e3ac2762d5f", 1930 + ) 1931 + go_repository( 1932 + name = "com_github_xeipuuv_gojsonreference", 1933 + build_file_proto_mode = "disable_global", 1934 + importpath = "github.com/xeipuuv/gojsonreference", 1935 + sum = "h1:EzJWgHovont7NscjpAxXsDA8S8BMYve8Y5+7cuRE7R0=", 1936 + version = "v0.0.0-20180127040603-bd5ef7bd5415", 1937 + ) 1938 + go_repository( 1939 + name = "com_github_xeipuuv_gojsonschema", 1940 + build_file_proto_mode = "disable_global", 1941 + importpath = "github.com/xeipuuv/gojsonschema", 1942 + sum = "h1:LhYJRs+L4fBtjZUfuSZIKGeVu0QRy8e5Xi7D17UxZ74=", 1943 + version = "v1.2.0", 1944 + ) 1945 + go_repository( 1946 + name = "com_github_xordataexchange_crypt", 1947 + build_file_proto_mode = "disable_global", 1948 + importpath = "github.com/xordataexchange/crypt", 1949 + sum = "h1:ESFSdwYZvkeru3RtdrYueztKhOBCSAAzS4Gf+k0tEow=", 1950 + version = "v0.0.3-0.20170626215501-b2862e3d0a77", 1951 + ) 1952 + go_repository( 1953 + name = "com_github_yalp_jsonpath", 1954 + build_file_proto_mode = "disable_global", 1955 + importpath = "github.com/yalp/jsonpath", 1956 + sum = "h1:6fRhSjgLCkTD3JnJxvaJ4Sj+TYblw757bqYgZaOq5ZY=", 1957 + version = "v0.0.0-20180802001716-5cc68e5049a0", 1958 + ) 1959 + go_repository( 1960 + name = "com_github_yosssi_ace", 1961 + build_file_proto_mode = "disable_global", 1962 + importpath = "github.com/yosssi/ace", 1963 + sum = "h1:tUkIP/BLdKqrlrPwcmH0shwEEhTRHoGnc1wFIWmaBUA=", 1964 + version = "v0.0.5", 1965 + ) 1966 + go_repository( 1967 + name = "com_github_yudai_gojsondiff", 1968 + build_file_proto_mode = "disable_global", 1969 + importpath = "github.com/yudai/gojsondiff", 1970 + sum = "h1:27cbfqXLVEJ1o8I6v3y9lg8Ydm53EKqHXAOMxEGlCOA=", 1971 + version = "v1.0.0", 1972 + ) 1973 + go_repository( 1974 + name = "com_github_yudai_golcs", 1975 + build_file_proto_mode = "disable_global", 1976 + importpath = "github.com/yudai/golcs", 1977 + sum = "h1:BHyfKlQyqbsFN5p3IfnEUduWvb9is428/nNb5L3U01M=", 1978 + version = "v0.0.0-20170316035057-ecda9a501e82", 1979 + ) 1980 + go_repository( 1981 + name = "com_github_yudai_pp", 1982 + build_file_proto_mode = "disable_global", 1983 + importpath = "github.com/yudai/pp", 1984 + sum = "h1:Q4//iY4pNF6yPLZIigmvcl7k/bPgrcTPIFIcmawg5bI=", 1985 + version = "v2.0.1+incompatible", 1986 + ) 1987 + go_repository( 1988 + name = "com_github_yuin_goldmark", 1989 + build_file_proto_mode = "disable_global", 1990 + importpath = "github.com/yuin/goldmark", 1991 + sum = "h1:fVcFKWvrslecOb/tg+Cc05dkeYx540o0FuFt3nUVDoE=", 1992 + version = "v1.4.13", 1993 + ) 1994 + go_repository( 1995 + name = "com_github_yusufpapurcu_wmi", 1996 + build_file_proto_mode = "disable_global", 1997 + importpath = "github.com/yusufpapurcu/wmi", 1998 + sum = "h1:KBNDSne4vP5mbSWnJbO+51IMOXJB67QiYCSBrubbPRg=", 1999 + version = "v1.2.2", 2000 + ) 2001 + go_repository( 2002 + name = "com_google_cloud_go", 2003 + build_file_proto_mode = "disable_global", 2004 + importpath = "cloud.google.com/go", 2005 + sum = "h1:38CZoKGlCnPZjGdyj0ZfpoGae0/wgNfy5F0byyxg0Gk=", 2006 + version = "v0.109.0", 2007 + ) 2008 + go_repository( 2009 + name = "com_google_cloud_go_accessapproval", 2010 + build_file_proto_mode = "disable_global", 2011 + importpath = "cloud.google.com/go/accessapproval", 2012 + sum = "h1:/nTivgnV/n1CaAeo+ekGexTYUsKEU9jUVkoY5359+3Q=", 2013 + version = "v1.5.0", 2014 + ) 2015 + go_repository( 2016 + name = "com_google_cloud_go_accesscontextmanager", 2017 + build_file_proto_mode = "disable_global", 2018 + importpath = "cloud.google.com/go/accesscontextmanager", 2019 + sum = "h1:CFhNhU7pcD11cuDkQdrE6PQJgv0EXNKNv06jIzbLlCU=", 2020 + version = "v1.4.0", 2021 + ) 2022 + go_repository( 2023 + name = "com_google_cloud_go_aiplatform", 2024 + build_file_proto_mode = "disable_global", 2025 + importpath = "cloud.google.com/go/aiplatform", 2026 + sum = "h1:DBi3Jk9XjCJ4pkkLM4NqKgj3ozUL1wq4l+d3/jTGXAI=", 2027 + version = "v1.27.0", 2028 + ) 2029 + go_repository( 2030 + name = "com_google_cloud_go_analytics", 2031 + build_file_proto_mode = "disable_global", 2032 + importpath = "cloud.google.com/go/analytics", 2033 + sum = "h1:NKw6PpQi6V1O+KsjuTd+bhip9d0REYu4NevC45vtGp8=", 2034 + version = "v0.12.0", 2035 + ) 2036 + go_repository( 2037 + name = "com_google_cloud_go_apigateway", 2038 + build_file_proto_mode = "disable_global", 2039 + importpath = "cloud.google.com/go/apigateway", 2040 + sum = "h1:IIoXKR7FKrEAQhMTz5hK2wiDz2WNFHS7eVr/L1lE/rM=", 2041 + version = "v1.4.0", 2042 + ) 2043 + go_repository( 2044 + name = "com_google_cloud_go_apigeeconnect", 2045 + build_file_proto_mode = "disable_global", 2046 + importpath = "cloud.google.com/go/apigeeconnect", 2047 + sum = "h1:AONoTYJviyv1vS4IkvWzq69gEVdvHx35wKXc+e6wjZQ=", 2048 + version = "v1.4.0", 2049 + ) 2050 + go_repository( 2051 + name = "com_google_cloud_go_appengine", 2052 + build_file_proto_mode = "disable_global", 2053 + importpath = "cloud.google.com/go/appengine", 2054 + sum = "h1:lmG+O5oaR9xNwaRBwE2XoMhwQHsHql5IoiGr1ptdDwU=", 2055 + version = "v1.5.0", 2056 + ) 2057 + go_repository( 2058 + name = "com_google_cloud_go_area120", 2059 + build_file_proto_mode = "disable_global", 2060 + importpath = "cloud.google.com/go/area120", 2061 + sum = "h1:TCMhwWEWhCn8d44/Zs7UCICTWje9j3HuV6nVGMjdpYw=", 2062 + version = "v0.6.0", 2063 + ) 2064 + go_repository( 2065 + name = "com_google_cloud_go_artifactregistry", 2066 + build_file_proto_mode = "disable_global", 2067 + importpath = "cloud.google.com/go/artifactregistry", 2068 + sum = "h1:3d0LRAU1K6vfqCahhl9fx2oGHcq+s5gftdix4v8Ibrc=", 2069 + version = "v1.9.0", 2070 + ) 2071 + go_repository( 2072 + name = "com_google_cloud_go_asset", 2073 + build_file_proto_mode = "disable_global", 2074 + importpath = "cloud.google.com/go/asset", 2075 + sum = "h1:aCrlaLGJWTODJX4G56ZYzJefITKEWNfbjjtHSzWpxW0=", 2076 + version = "v1.10.0", 2077 + ) 2078 + go_repository( 2079 + name = "com_google_cloud_go_assuredworkloads", 2080 + build_file_proto_mode = "disable_global", 2081 + importpath = "cloud.google.com/go/assuredworkloads", 2082 + sum = "h1:hhIdCOowsT1GG5eMCIA0OwK6USRuYTou/1ZeNxCSRtA=", 2083 + version = "v1.9.0", 2084 + ) 2085 + go_repository( 2086 + name = "com_google_cloud_go_automl", 2087 + build_file_proto_mode = "disable_global", 2088 + importpath = "cloud.google.com/go/automl", 2089 + sum = "h1:BMioyXSbg7d7xLibn47cs0elW6RT780IUWr42W8rp2Q=", 2090 + version = "v1.8.0", 2091 + ) 2092 + go_repository( 2093 + name = "com_google_cloud_go_baremetalsolution", 2094 + build_file_proto_mode = "disable_global", 2095 + importpath = "cloud.google.com/go/baremetalsolution", 2096 + sum = "h1:g9KO6SkakcYPcc/XjAzeuUrEOXlYPnMpuiaywYaGrmQ=", 2097 + version = "v0.4.0", 2098 + ) 2099 + go_repository( 2100 + name = "com_google_cloud_go_batch", 2101 + build_file_proto_mode = "disable_global", 2102 + importpath = "cloud.google.com/go/batch", 2103 + sum = "h1:1jvEBY55OH4Sd2FxEXQfxGExFWov1A/IaRe+Z5Z71Fw=", 2104 + version = "v0.4.0", 2105 + ) 2106 + go_repository( 2107 + name = "com_google_cloud_go_beyondcorp", 2108 + build_file_proto_mode = "disable_global", 2109 + importpath = "cloud.google.com/go/beyondcorp", 2110 + sum = "h1:w+4kThysgl0JiKshi2MKDCg2NZgOyqOI0wq2eBZyrzA=", 2111 + version = "v0.3.0", 2112 + ) 2113 + go_repository( 2114 + name = "com_google_cloud_go_bigquery", 2115 + build_file_proto_mode = "disable_global", 2116 + importpath = "cloud.google.com/go/bigquery", 2117 + sum = "h1:Wi4dITi+cf9VYp4VH2T9O41w0kCW0uQTELq2Z6tukN0=", 2118 + version = "v1.44.0", 2119 + ) 2120 + go_repository( 2121 + name = "com_google_cloud_go_billing", 2122 + build_file_proto_mode = "disable_global", 2123 + importpath = "cloud.google.com/go/billing", 2124 + sum = "h1:Xkii76HWELHwBtkQVZvqmSo9GTr0O+tIbRNnMcGdlg4=", 2125 + version = "v1.7.0", 2126 + ) 2127 + go_repository( 2128 + name = "com_google_cloud_go_binaryauthorization", 2129 + build_file_proto_mode = "disable_global", 2130 + importpath = "cloud.google.com/go/binaryauthorization", 2131 + sum = "h1:pL70vXWn9TitQYXBWTK2abHl2JHLwkFRjYw6VflRqEA=", 2132 + version = "v1.4.0", 2133 + ) 2134 + go_repository( 2135 + name = "com_google_cloud_go_certificatemanager", 2136 + build_file_proto_mode = "disable_global", 2137 + importpath = "cloud.google.com/go/certificatemanager", 2138 + sum = "h1:tzbR4UHBbgsewMWUD93JHi8EBi/gHBoSAcY1/sThFGk=", 2139 + version = "v1.4.0", 2140 + ) 2141 + go_repository( 2142 + name = "com_google_cloud_go_channel", 2143 + build_file_proto_mode = "disable_global", 2144 + importpath = "cloud.google.com/go/channel", 2145 + sum = "h1:pNuUlZx0Jb0Ts9P312bmNMuH5IiFWIR4RUtLb70Ke5s=", 2146 + version = "v1.9.0", 2147 + ) 2148 + go_repository( 2149 + name = "com_google_cloud_go_cloudbuild", 2150 + build_file_proto_mode = "disable_global", 2151 + importpath = "cloud.google.com/go/cloudbuild", 2152 + sum = "h1:TAAmCmAlOJ4uNBu6zwAjwhyl/7fLHHxIEazVhr3QBbQ=", 2153 + version = "v1.4.0", 2154 + ) 2155 + go_repository( 2156 + name = "com_google_cloud_go_clouddms", 2157 + build_file_proto_mode = "disable_global", 2158 + importpath = "cloud.google.com/go/clouddms", 2159 + sum = "h1:UhzHIlgFfMr6luVYVNydw/pl9/U5kgtjCMJHnSvoVws=", 2160 + version = "v1.4.0", 2161 + ) 2162 + go_repository( 2163 + name = "com_google_cloud_go_cloudtasks", 2164 + build_file_proto_mode = "disable_global", 2165 + importpath = "cloud.google.com/go/cloudtasks", 2166 + sum = "h1:faUiUgXjW8yVZ7XMnKHKm1WE4OldPBUWWfIRN/3z1dc=", 2167 + version = "v1.8.0", 2168 + ) 2169 + go_repository( 2170 + name = "com_google_cloud_go_compute", 2171 + build_file_proto_mode = "disable_global", 2172 + importpath = "cloud.google.com/go/compute", 2173 + sum = "h1:FEigFqoDbys2cvFkZ9Fjq4gnHBP55anJ0yQyau2f9oY=", 2174 + version = "v1.18.0", 2175 + ) 2176 + go_repository( 2177 + name = "com_google_cloud_go_compute_metadata", 2178 + build_file_proto_mode = "disable_global", 2179 + importpath = "cloud.google.com/go/compute/metadata", 2180 + sum = "h1:mg4jlk7mCAj6xXp9UJ4fjI9VUI5rubuGBW5aJ7UnBMY=", 2181 + version = "v0.2.3", 2182 + ) 2183 + go_repository( 2184 + name = "com_google_cloud_go_contactcenterinsights", 2185 + build_file_proto_mode = "disable_global", 2186 + importpath = "cloud.google.com/go/contactcenterinsights", 2187 + sum = "h1:tTQLI/ZvguUf9Hv+36BkG2+/PeC8Ol1q4pBW+tgCx0A=", 2188 + version = "v1.4.0", 2189 + ) 2190 + go_repository( 2191 + name = "com_google_cloud_go_container", 2192 + build_file_proto_mode = "disable_global", 2193 + importpath = "cloud.google.com/go/container", 2194 + sum = "h1:nbEK/59GyDRKKlo1SqpohY1TK8LmJ2XNcvS9Gyom2A0=", 2195 + version = "v1.7.0", 2196 + ) 2197 + go_repository( 2198 + name = "com_google_cloud_go_containeranalysis", 2199 + build_file_proto_mode = "disable_global", 2200 + importpath = "cloud.google.com/go/containeranalysis", 2201 + sum = "h1:2824iym832ljKdVpCBnpqm5K94YT/uHTVhNF+dRTXPI=", 2202 + version = "v0.6.0", 2203 + ) 2204 + go_repository( 2205 + name = "com_google_cloud_go_datacatalog", 2206 + build_file_proto_mode = "disable_global", 2207 + importpath = "cloud.google.com/go/datacatalog", 2208 + sum = "h1:6kZ4RIOW/uT7QWC5SfPfq/G8sYzr/v+UOmOAxy4Z1TE=", 2209 + version = "v1.8.0", 2210 + ) 2211 + go_repository( 2212 + name = "com_google_cloud_go_dataflow", 2213 + build_file_proto_mode = "disable_global", 2214 + importpath = "cloud.google.com/go/dataflow", 2215 + sum = "h1:CW3541Fm7KPTyZjJdnX6NtaGXYFn5XbFC5UcjgALKvU=", 2216 + version = "v0.7.0", 2217 + ) 2218 + go_repository( 2219 + name = "com_google_cloud_go_dataform", 2220 + build_file_proto_mode = "disable_global", 2221 + importpath = "cloud.google.com/go/dataform", 2222 + sum = "h1:vLwowLF2ZB5J5gqiZCzv076lDI/Rd7zYQQFu5XO1PSg=", 2223 + version = "v0.5.0", 2224 + ) 2225 + go_repository( 2226 + name = "com_google_cloud_go_datafusion", 2227 + build_file_proto_mode = "disable_global", 2228 + importpath = "cloud.google.com/go/datafusion", 2229 + sum = "h1:j5m2hjWovTZDTQak4MJeXAR9yN7O+zMfULnjGw/OOLg=", 2230 + version = "v1.5.0", 2231 + ) 2232 + go_repository( 2233 + name = "com_google_cloud_go_datalabeling", 2234 + build_file_proto_mode = "disable_global", 2235 + importpath = "cloud.google.com/go/datalabeling", 2236 + sum = "h1:dp8jOF21n/7jwgo/uuA0RN8hvLcKO4q6s/yvwevs2ZM=", 2237 + version = "v0.6.0", 2238 + ) 2239 + go_repository( 2240 + name = "com_google_cloud_go_dataplex", 2241 + build_file_proto_mode = "disable_global", 2242 + importpath = "cloud.google.com/go/dataplex", 2243 + sum = "h1:cNxeA2DiWliQGi21kPRqnVeQ5xFhNoEjPRt1400Pm8Y=", 2244 + version = "v1.4.0", 2245 + ) 2246 + go_repository( 2247 + name = "com_google_cloud_go_dataproc", 2248 + build_file_proto_mode = "disable_global", 2249 + importpath = "cloud.google.com/go/dataproc", 2250 + sum = "h1:gVOqNmElfa6n/ccG/QDlfurMWwrK3ezvy2b2eDoCmS0=", 2251 + version = "v1.8.0", 2252 + ) 2253 + go_repository( 2254 + name = "com_google_cloud_go_dataqna", 2255 + build_file_proto_mode = "disable_global", 2256 + importpath = "cloud.google.com/go/dataqna", 2257 + sum = "h1:gx9jr41ytcA3dXkbbd409euEaWtofCVXYBvJz3iYm18=", 2258 + version = "v0.6.0", 2259 + ) 2260 + go_repository( 2261 + name = "com_google_cloud_go_datastore", 2262 + build_file_proto_mode = "disable_global", 2263 + importpath = "cloud.google.com/go/datastore", 2264 + sum = "h1:4siQRf4zTiAVt/oeH4GureGkApgb2vtPQAtOmhpqQwE=", 2265 + version = "v1.10.0", 2266 + ) 2267 + go_repository( 2268 + name = "com_google_cloud_go_datastream", 2269 + build_file_proto_mode = "disable_global", 2270 + importpath = "cloud.google.com/go/datastream", 2271 + sum = "h1:PgIgbhedBtYBU6POGXFMn2uSl9vpqubc3ewTNdcU8Mk=", 2272 + version = "v1.5.0", 2273 + ) 2274 + go_repository( 2275 + name = "com_google_cloud_go_deploy", 2276 + build_file_proto_mode = "disable_global", 2277 + importpath = "cloud.google.com/go/deploy", 2278 + sum = "h1:kI6dxt8Ml0is/x7YZjLveTvR7YPzXAUD/8wQZ2nH5zA=", 2279 + version = "v1.5.0", 2280 + ) 2281 + go_repository( 2282 + name = "com_google_cloud_go_dialogflow", 2283 + build_file_proto_mode = "disable_global", 2284 + importpath = "cloud.google.com/go/dialogflow", 2285 + sum = "h1:HYHVOkoxQ9bSfNIelSZYNAtUi4CeSrCnROyOsbOqPq8=", 2286 + version = "v1.19.0", 2287 + ) 2288 + go_repository( 2289 + name = "com_google_cloud_go_dlp", 2290 + build_file_proto_mode = "disable_global", 2291 + importpath = "cloud.google.com/go/dlp", 2292 + sum = "h1:9I4BYeJSVKoSKgjr70fLdRDumqcUeVmHV4fd5f9LR6Y=", 2293 + version = "v1.7.0", 2294 + ) 2295 + go_repository( 2296 + name = "com_google_cloud_go_documentai", 2297 + build_file_proto_mode = "disable_global", 2298 + importpath = "cloud.google.com/go/documentai", 2299 + sum = "h1:jfq09Fdjtnpnmt/MLyf6A3DM3ynb8B2na0K+vSXvpFM=", 2300 + version = "v1.10.0", 2301 + ) 2302 + go_repository( 2303 + name = "com_google_cloud_go_domains", 2304 + build_file_proto_mode = "disable_global", 2305 + importpath = "cloud.google.com/go/domains", 2306 + sum = "h1:pu3JIgC1rswIqi5romW0JgNO6CTUydLYX8zyjiAvO1c=", 2307 + version = "v0.7.0", 2308 + ) 2309 + go_repository( 2310 + name = "com_google_cloud_go_edgecontainer", 2311 + build_file_proto_mode = "disable_global", 2312 + importpath = "cloud.google.com/go/edgecontainer", 2313 + sum = "h1:hd6J2n5dBBRuAqnNUEsKWrp6XNPKsaxwwIyzOPZTokk=", 2314 + version = "v0.2.0", 2315 + ) 2316 + go_repository( 2317 + name = "com_google_cloud_go_errorreporting", 2318 + build_file_proto_mode = "disable_global", 2319 + importpath = "cloud.google.com/go/errorreporting", 2320 + sum = "h1:kj1XEWMu8P0qlLhm3FwcaFsUvXChV/OraZwA70trRR0=", 2321 + version = "v0.3.0", 2322 + ) 2323 + go_repository( 2324 + name = "com_google_cloud_go_essentialcontacts", 2325 + build_file_proto_mode = "disable_global", 2326 + importpath = "cloud.google.com/go/essentialcontacts", 2327 + sum = "h1:b6csrQXCHKQmfo9h3dG/pHyoEh+fQG1Yg78a53LAviY=", 2328 + version = "v1.4.0", 2329 + ) 2330 + go_repository( 2331 + name = "com_google_cloud_go_eventarc", 2332 + build_file_proto_mode = "disable_global", 2333 + importpath = "cloud.google.com/go/eventarc", 2334 + sum = "h1:AgCqrmMMIcel5WWKkzz5EkCUKC3Rl5LNMMYsS+LvsI0=", 2335 + version = "v1.8.0", 2336 + ) 2337 + go_repository( 2338 + name = "com_google_cloud_go_filestore", 2339 + build_file_proto_mode = "disable_global", 2340 + importpath = "cloud.google.com/go/filestore", 2341 + sum = "h1:yjKOpzvqtDmL5AXbKttLc8j0hL20kuC1qPdy5HPcxp0=", 2342 + version = "v1.4.0", 2343 + ) 2344 + go_repository( 2345 + name = "com_google_cloud_go_firestore", 2346 + build_file_proto_mode = "disable_global", 2347 + importpath = "cloud.google.com/go/firestore", 2348 + sum = "h1:IBlRyxgGySXu5VuW0RgGFlTtLukSnNkpDiEOMkQkmpA=", 2349 + version = "v1.9.0", 2350 + ) 2351 + go_repository( 2352 + name = "com_google_cloud_go_functions", 2353 + build_file_proto_mode = "disable_global", 2354 + importpath = "cloud.google.com/go/functions", 2355 + sum = "h1:35tgv1fQOtvKqH/uxJMzX3w6usneJ0zXpsFr9KAVhNE=", 2356 + version = "v1.9.0", 2357 + ) 2358 + go_repository( 2359 + name = "com_google_cloud_go_gaming", 2360 + build_file_proto_mode = "disable_global", 2361 + importpath = "cloud.google.com/go/gaming", 2362 + sum = "h1:97OAEQtDazAJD7yh/kvQdSCQuTKdR0O+qWAJBZJ4xiA=", 2363 + version = "v1.8.0", 2364 + ) 2365 + go_repository( 2366 + name = "com_google_cloud_go_gkebackup", 2367 + build_file_proto_mode = "disable_global", 2368 + importpath = "cloud.google.com/go/gkebackup", 2369 + sum = "h1:4K+jiv4ocqt1niN8q5Imd8imRoXBHTrdnJVt/uFFxF4=", 2370 + version = "v0.3.0", 2371 + ) 2372 + go_repository( 2373 + name = "com_google_cloud_go_gkeconnect", 2374 + build_file_proto_mode = "disable_global", 2375 + importpath = "cloud.google.com/go/gkeconnect", 2376 + sum = "h1:zAcvDa04tTnGdu6TEZewaLN2tdMtUOJJ7fEceULjguA=", 2377 + version = "v0.6.0", 2378 + ) 2379 + go_repository( 2380 + name = "com_google_cloud_go_gkehub", 2381 + build_file_proto_mode = "disable_global", 2382 + importpath = "cloud.google.com/go/gkehub", 2383 + sum = "h1:JTcTaYQRGsVm+qkah7WzHb6e9sf1C0laYdRPn9aN+vg=", 2384 + version = "v0.10.0", 2385 + ) 2386 + go_repository( 2387 + name = "com_google_cloud_go_gkemulticloud", 2388 + build_file_proto_mode = "disable_global", 2389 + importpath = "cloud.google.com/go/gkemulticloud", 2390 + sum = "h1:8F1NhJj8ucNj7lK51UZMtAjSWTgP1zO18XF6vkfiPPU=", 2391 + version = "v0.4.0", 2392 + ) 2393 + go_repository( 2394 + name = "com_google_cloud_go_gsuiteaddons", 2395 + build_file_proto_mode = "disable_global", 2396 + importpath = "cloud.google.com/go/gsuiteaddons", 2397 + sum = "h1:TGT2oGmO5q3VH6SjcrlgPUWI0njhYv4kywLm6jag0to=", 2398 + version = "v1.4.0", 2399 + ) 2400 + go_repository( 2401 + name = "com_google_cloud_go_iam", 2402 + build_file_proto_mode = "disable_global", 2403 + importpath = "cloud.google.com/go/iam", 2404 + sum = "h1:E2osAkZzxI/+8pZcxVLcDtAQx/u+hZXVryUaYQ5O0Kk=", 2405 + version = "v0.8.0", 2406 + ) 2407 + go_repository( 2408 + name = "com_google_cloud_go_iap", 2409 + build_file_proto_mode = "disable_global", 2410 + importpath = "cloud.google.com/go/iap", 2411 + sum = "h1:BGEXovwejOCt1zDk8hXq0bOhhRu9haXKWXXXp2B4wBM=", 2412 + version = "v1.5.0", 2413 + ) 2414 + go_repository( 2415 + name = "com_google_cloud_go_ids", 2416 + build_file_proto_mode = "disable_global", 2417 + importpath = "cloud.google.com/go/ids", 2418 + sum = "h1:LncHK4HHucb5Du310X8XH9/ICtMwZ2PCfK0ScjWiJoY=", 2419 + version = "v1.2.0", 2420 + ) 2421 + go_repository( 2422 + name = "com_google_cloud_go_iot", 2423 + build_file_proto_mode = "disable_global", 2424 + importpath = "cloud.google.com/go/iot", 2425 + sum = "h1:Y9+oZT9jD4GUZzORXTU45XsnQrhxmDT+TFbPil6pRVQ=", 2426 + version = "v1.4.0", 2427 + ) 2428 + go_repository( 2429 + name = "com_google_cloud_go_kms", 2430 + build_file_proto_mode = "disable_global", 2431 + importpath = "cloud.google.com/go/kms", 2432 + sum = "h1:OWRZzrPmOZUzurjI2FBGtgY2mB1WaJkqhw6oIwSj0Yg=", 2433 + version = "v1.6.0", 2434 + ) 2435 + go_repository( 2436 + name = "com_google_cloud_go_language", 2437 + build_file_proto_mode = "disable_global", 2438 + importpath = "cloud.google.com/go/language", 2439 + sum = "h1:3Wa+IUMamL4JH3Zd3cDZUHpwyqplTACt6UZKRD2eCL4=", 2440 + version = "v1.8.0", 2441 + ) 2442 + go_repository( 2443 + name = "com_google_cloud_go_lifesciences", 2444 + build_file_proto_mode = "disable_global", 2445 + importpath = "cloud.google.com/go/lifesciences", 2446 + sum = "h1:tIqhivE2LMVYkX0BLgG7xL64oNpDaFFI7teunglt1tI=", 2447 + version = "v0.6.0", 2448 + ) 2449 + go_repository( 2450 + name = "com_google_cloud_go_logging", 2451 + build_file_proto_mode = "disable_global", 2452 + importpath = "cloud.google.com/go/logging", 2453 + sum = "h1:ZBsZK+JG+oCDT+vaxwqF2egKNRjz8soXiS6Xv79benI=", 2454 + version = "v1.6.1", 2455 + ) 2456 + go_repository( 2457 + name = "com_google_cloud_go_longrunning", 2458 + build_file_proto_mode = "disable_global", 2459 + importpath = "cloud.google.com/go/longrunning", 2460 + sum = "h1:NjljC+FYPV3uh5/OwWT6pVU+doBqMg2x/rZlE+CamDs=", 2461 + version = "v0.3.0", 2462 + ) 2463 + go_repository( 2464 + name = "com_google_cloud_go_managedidentities", 2465 + build_file_proto_mode = "disable_global", 2466 + importpath = "cloud.google.com/go/managedidentities", 2467 + sum = "h1:3Kdajn6X25yWQFhFCErmKSYTSvkEd3chJROny//F1A0=", 2468 + version = "v1.4.0", 2469 + ) 2470 + go_repository( 2471 + name = "com_google_cloud_go_maps", 2472 + build_file_proto_mode = "disable_global", 2473 + importpath = "cloud.google.com/go/maps", 2474 + sum = "h1:kLReRbclTgJefw2fcCbdLPLhPj0U6UUWN10ldG8sdOU=", 2475 + version = "v0.1.0", 2476 + ) 2477 + go_repository( 2478 + name = "com_google_cloud_go_mediatranslation", 2479 + build_file_proto_mode = "disable_global", 2480 + importpath = "cloud.google.com/go/mediatranslation", 2481 + sum = "h1:qAJzpxmEX+SeND10Y/4868L5wfZpo4Y3BIEnIieP4dk=", 2482 + version = "v0.6.0", 2483 + ) 2484 + go_repository( 2485 + name = "com_google_cloud_go_memcache", 2486 + build_file_proto_mode = "disable_global", 2487 + importpath = "cloud.google.com/go/memcache", 2488 + sum = "h1:yLxUzJkZVSH2kPaHut7k+7sbIBFpvSh1LW9qjM2JDjA=", 2489 + version = "v1.7.0", 2490 + ) 2491 + go_repository( 2492 + name = "com_google_cloud_go_metastore", 2493 + build_file_proto_mode = "disable_global", 2494 + importpath = "cloud.google.com/go/metastore", 2495 + sum = "h1:3KcShzqWdqxrDEXIBWpYJpOOrgpDj+HlBi07Grot49Y=", 2496 + version = "v1.8.0", 2497 + ) 2498 + go_repository( 2499 + name = "com_google_cloud_go_monitoring", 2500 + build_file_proto_mode = "disable_global", 2501 + importpath = "cloud.google.com/go/monitoring", 2502 + sum = "h1:c9riaGSPQ4dUKWB+M1Fl0N+iLxstMbCktdEwYSPGDvA=", 2503 + version = "v1.8.0", 2504 + ) 2505 + go_repository( 2506 + name = "com_google_cloud_go_networkconnectivity", 2507 + build_file_proto_mode = "disable_global", 2508 + importpath = "cloud.google.com/go/networkconnectivity", 2509 + sum = "h1:BVdIKaI68bihnXGdCVL89Jsg9kq2kg+II30fjVqo62E=", 2510 + version = "v1.7.0", 2511 + ) 2512 + go_repository( 2513 + name = "com_google_cloud_go_networkmanagement", 2514 + build_file_proto_mode = "disable_global", 2515 + importpath = "cloud.google.com/go/networkmanagement", 2516 + sum = "h1:mDHA3CDW00imTvC5RW6aMGsD1bH+FtKwZm/52BxaiMg=", 2517 + version = "v1.5.0", 2518 + ) 2519 + go_repository( 2520 + name = "com_google_cloud_go_networksecurity", 2521 + build_file_proto_mode = "disable_global", 2522 + importpath = "cloud.google.com/go/networksecurity", 2523 + sum = "h1:qDEX/3sipg9dS5JYsAY+YvgTjPR63cozzAWop8oZS94=", 2524 + version = "v0.6.0", 2525 + ) 2526 + go_repository( 2527 + name = "com_google_cloud_go_notebooks", 2528 + build_file_proto_mode = "disable_global", 2529 + importpath = "cloud.google.com/go/notebooks", 2530 + sum = "h1:AC8RPjNvel3ExgXjO1YOAz+teg9+j+89TNxa7pIZfww=", 2531 + version = "v1.5.0", 2532 + ) 2533 + go_repository( 2534 + name = "com_google_cloud_go_optimization", 2535 + build_file_proto_mode = "disable_global", 2536 + importpath = "cloud.google.com/go/optimization", 2537 + sum = "h1:7PxOq9VTT7TMib/6dMoWpMvWS2E4dJEvtYzjvBreaec=", 2538 + version = "v1.2.0", 2539 + ) 2540 + go_repository( 2541 + name = "com_google_cloud_go_orchestration", 2542 + build_file_proto_mode = "disable_global", 2543 + importpath = "cloud.google.com/go/orchestration", 2544 + sum = "h1:39d6tqvNjd/wsSub1Bn4cEmrYcet5Ur6xpaN+SxOxtY=", 2545 + version = "v1.4.0", 2546 + ) 2547 + go_repository( 2548 + name = "com_google_cloud_go_orgpolicy", 2549 + build_file_proto_mode = "disable_global", 2550 + importpath = "cloud.google.com/go/orgpolicy", 2551 + sum = "h1:erF5PHqDZb6FeFrUHiYj2JK2BMhsk8CyAg4V4amJ3rE=", 2552 + version = "v1.5.0", 2553 + ) 2554 + go_repository( 2555 + name = "com_google_cloud_go_osconfig", 2556 + build_file_proto_mode = "disable_global", 2557 + importpath = "cloud.google.com/go/osconfig", 2558 + sum = "h1:NO0RouqCOM7M2S85Eal6urMSSipWwHU8evzwS+siqUI=", 2559 + version = "v1.10.0", 2560 + ) 2561 + go_repository( 2562 + name = "com_google_cloud_go_oslogin", 2563 + build_file_proto_mode = "disable_global", 2564 + importpath = "cloud.google.com/go/oslogin", 2565 + sum = "h1:pKGDPfeZHDybtw48WsnVLjoIPMi9Kw62kUE5TXCLCN4=", 2566 + version = "v1.7.0", 2567 + ) 2568 + go_repository( 2569 + name = "com_google_cloud_go_phishingprotection", 2570 + build_file_proto_mode = "disable_global", 2571 + importpath = "cloud.google.com/go/phishingprotection", 2572 + sum = "h1:OrwHLSRSZyaiOt3tnY33dsKSedxbMzsXvqB21okItNQ=", 2573 + version = "v0.6.0", 2574 + ) 2575 + go_repository( 2576 + name = "com_google_cloud_go_policytroubleshooter", 2577 + build_file_proto_mode = "disable_global", 2578 + importpath = "cloud.google.com/go/policytroubleshooter", 2579 + sum = "h1:NQklJuOUoz1BPP+Epjw81COx7IISWslkZubz/1i0UN8=", 2580 + version = "v1.4.0", 2581 + ) 2582 + go_repository( 2583 + name = "com_google_cloud_go_privatecatalog", 2584 + build_file_proto_mode = "disable_global", 2585 + importpath = "cloud.google.com/go/privatecatalog", 2586 + sum = "h1:Vz86uiHCtNGm1DeC32HeG2VXmOq5JRYA3VRPf8ZEcSg=", 2587 + version = "v0.6.0", 2588 + ) 2589 + go_repository( 2590 + name = "com_google_cloud_go_profiler", 2591 + build_file_proto_mode = "disable_global", 2592 + importpath = "cloud.google.com/go/profiler", 2593 + sum = "h1:b5got9Be9Ia0HVvyt7PavWxXEht15B9lWnigdvHtxOc=", 2594 + version = "v0.3.1", 2595 + ) 2596 + go_repository( 2597 + name = "com_google_cloud_go_pubsub", 2598 + build_file_proto_mode = "disable_global", 2599 + importpath = "cloud.google.com/go/pubsub", 2600 + sum = "h1:q+J/Nfr6Qx4RQeu3rJcnN48SNC0qzlYzSeqkPq93VHs=", 2601 + version = "v1.27.1", 2602 + ) 2603 + go_repository( 2604 + name = "com_google_cloud_go_pubsublite", 2605 + build_file_proto_mode = "disable_global", 2606 + importpath = "cloud.google.com/go/pubsublite", 2607 + sum = "h1:iqrD8vp3giTb7hI1q4TQQGj77cj8zzgmMPsTZtLnprM=", 2608 + version = "v1.5.0", 2609 + ) 2610 + go_repository( 2611 + name = "com_google_cloud_go_recaptchaenterprise_v2", 2612 + build_file_proto_mode = "disable_global", 2613 + importpath = "cloud.google.com/go/recaptchaenterprise/v2", 2614 + sum = "h1:UqzFfb/WvhwXGDF1eQtdHLrmni+iByZXY4h3w9Kdyv8=", 2615 + version = "v2.5.0", 2616 + ) 2617 + go_repository( 2618 + name = "com_google_cloud_go_recommendationengine", 2619 + build_file_proto_mode = "disable_global", 2620 + importpath = "cloud.google.com/go/recommendationengine", 2621 + sum = "h1:6w+WxPf2LmUEqX0YyvfCoYb8aBYOcbIV25Vg6R0FLGw=", 2622 + version = "v0.6.0", 2623 + ) 2624 + go_repository( 2625 + name = "com_google_cloud_go_recommender", 2626 + build_file_proto_mode = "disable_global", 2627 + importpath = "cloud.google.com/go/recommender", 2628 + sum = "h1:9kMZQGeYfcOD/RtZfcNKGKtoex3DdoB4zRgYU/WaIwE=", 2629 + version = "v1.8.0", 2630 + ) 2631 + go_repository( 2632 + name = "com_google_cloud_go_redis", 2633 + build_file_proto_mode = "disable_global", 2634 + importpath = "cloud.google.com/go/redis", 2635 + sum = "h1:/zTwwBKIAD2DEWTrXZp8WD9yD/gntReF/HkPssVYd0U=", 2636 + version = "v1.10.0", 2637 + ) 2638 + go_repository( 2639 + name = "com_google_cloud_go_resourcemanager", 2640 + build_file_proto_mode = "disable_global", 2641 + importpath = "cloud.google.com/go/resourcemanager", 2642 + sum = "h1:NDao6CHMwEZIaNsdWy+tuvHaavNeGP06o1tgrR0kLvU=", 2643 + version = "v1.4.0", 2644 + ) 2645 + go_repository( 2646 + name = "com_google_cloud_go_resourcesettings", 2647 + build_file_proto_mode = "disable_global", 2648 + importpath = "cloud.google.com/go/resourcesettings", 2649 + sum = "h1:eTzOwB13WrfF0kuzG2ZXCfB3TLunSHBur4s+HFU6uSM=", 2650 + version = "v1.4.0", 2651 + ) 2652 + go_repository( 2653 + name = "com_google_cloud_go_retail", 2654 + build_file_proto_mode = "disable_global", 2655 + importpath = "cloud.google.com/go/retail", 2656 + sum = "h1:N9fa//ecFUOEPsW/6mJHfcapPV0wBSwIUwpVZB7MQ3o=", 2657 + version = "v1.11.0", 2658 + ) 2659 + go_repository( 2660 + name = "com_google_cloud_go_run", 2661 + build_file_proto_mode = "disable_global", 2662 + importpath = "cloud.google.com/go/run", 2663 + sum = "h1:AWPuzU7Xtaj3Jf+QarDWIs6AJ5hM1VFQ+F6Q+VZ6OT4=", 2664 + version = "v0.3.0", 2665 + ) 2666 + go_repository( 2667 + name = "com_google_cloud_go_scheduler", 2668 + build_file_proto_mode = "disable_global", 2669 + importpath = "cloud.google.com/go/scheduler", 2670 + sum = "h1:K/mxOewgHGeKuATUJNGylT75Mhtjmx1TOkKukATqMT8=", 2671 + version = "v1.7.0", 2672 + ) 2673 + go_repository( 2674 + name = "com_google_cloud_go_secretmanager", 2675 + build_file_proto_mode = "disable_global", 2676 + importpath = "cloud.google.com/go/secretmanager", 2677 + sum = "h1:xE6uXljAC1kCR8iadt9+/blg1fvSbmenlsDN4fT9gqw=", 2678 + version = "v1.9.0", 2679 + ) 2680 + go_repository( 2681 + name = "com_google_cloud_go_security", 2682 + build_file_proto_mode = "disable_global", 2683 + importpath = "cloud.google.com/go/security", 2684 + sum = "h1:KSKzzJMyUoMRQzcz7azIgqAUqxo7rmQ5rYvimMhikqg=", 2685 + version = "v1.10.0", 2686 + ) 2687 + go_repository( 2688 + name = "com_google_cloud_go_securitycenter", 2689 + build_file_proto_mode = "disable_global", 2690 + importpath = "cloud.google.com/go/securitycenter", 2691 + sum = "h1:QTVtk/Reqnx2bVIZtJKm1+mpfmwRwymmNvlaFez7fQY=", 2692 + version = "v1.16.0", 2693 + ) 2694 + go_repository( 2695 + name = "com_google_cloud_go_servicecontrol", 2696 + build_file_proto_mode = "disable_global", 2697 + importpath = "cloud.google.com/go/servicecontrol", 2698 + sum = "h1:ImIzbOu6y4jL6ob65I++QzvqgFaoAKgHOG+RU9/c4y8=", 2699 + version = "v1.5.0", 2700 + ) 2701 + go_repository( 2702 + name = "com_google_cloud_go_servicedirectory", 2703 + build_file_proto_mode = "disable_global", 2704 + importpath = "cloud.google.com/go/servicedirectory", 2705 + sum = "h1:f7M8IMcVzO3T425AqlZbP3yLzeipsBHtRza8vVFYMhQ=", 2706 + version = "v1.7.0", 2707 + ) 2708 + go_repository( 2709 + name = "com_google_cloud_go_servicemanagement", 2710 + build_file_proto_mode = "disable_global", 2711 + importpath = "cloud.google.com/go/servicemanagement", 2712 + sum = "h1:TpkCO5M7dhKSy1bKUD9o/sSEW/U1Gtx7opA1fsiMx0c=", 2713 + version = "v1.5.0", 2714 + ) 2715 + go_repository( 2716 + name = "com_google_cloud_go_serviceusage", 2717 + build_file_proto_mode = "disable_global", 2718 + importpath = "cloud.google.com/go/serviceusage", 2719 + sum = "h1:b0EwJxPJLpavSljMQh0RcdHsUrr5DQ+Nelt/3BAs5ro=", 2720 + version = "v1.4.0", 2721 + ) 2722 + go_repository( 2723 + name = "com_google_cloud_go_shell", 2724 + build_file_proto_mode = "disable_global", 2725 + importpath = "cloud.google.com/go/shell", 2726 + sum = "h1:b1LFhFBgKsG252inyhtmsUUZwchqSz3WTvAIf3JFo4g=", 2727 + version = "v1.4.0", 2728 + ) 2729 + go_repository( 2730 + name = "com_google_cloud_go_spanner", 2731 + build_file_proto_mode = "disable_global", 2732 + importpath = "cloud.google.com/go/spanner", 2733 + sum = "h1:NvdTpRwf7DTegbfFdPjAWyD7bOVu0VeMqcvR9aCQCAc=", 2734 + version = "v1.41.0", 2735 + ) 2736 + go_repository( 2737 + name = "com_google_cloud_go_speech", 2738 + build_file_proto_mode = "disable_global", 2739 + importpath = "cloud.google.com/go/speech", 2740 + sum = "h1:yK0ocnFH4Wsf0cMdUyndJQ/hPv02oTJOxzi6AgpBy4s=", 2741 + version = "v1.9.0", 2742 + ) 2743 + go_repository( 2744 + name = "com_google_cloud_go_storage", 2745 + build_file_proto_mode = "disable_global", 2746 + importpath = "cloud.google.com/go/storage", 2747 + sum = "h1:F5QDG5ChchaAVQhINh24U99OWHURqrW8OmQcGKXcbgI=", 2748 + version = "v1.28.1", 2749 + ) 2750 + go_repository( 2751 + name = "com_google_cloud_go_storagetransfer", 2752 + build_file_proto_mode = "disable_global", 2753 + importpath = "cloud.google.com/go/storagetransfer", 2754 + sum = "h1:fUe3OydbbvHcAYp07xY+2UpH4AermGbmnm7qdEj3tGE=", 2755 + version = "v1.6.0", 2756 + ) 2757 + go_repository( 2758 + name = "com_google_cloud_go_talent", 2759 + build_file_proto_mode = "disable_global", 2760 + importpath = "cloud.google.com/go/talent", 2761 + sum = "h1:MrekAGxLqAeAol4Sc0allOVqUGO8j+Iim8NMvpiD7tM=", 2762 + version = "v1.4.0", 2763 + ) 2764 + go_repository( 2765 + name = "com_google_cloud_go_texttospeech", 2766 + build_file_proto_mode = "disable_global", 2767 + importpath = "cloud.google.com/go/texttospeech", 2768 + sum = "h1:ccPiHgTewxgyAeCWgQWvZvrLmbfQSFABTMAfrSPLPyY=", 2769 + version = "v1.5.0", 2770 + ) 2771 + go_repository( 2772 + name = "com_google_cloud_go_tpu", 2773 + build_file_proto_mode = "disable_global", 2774 + importpath = "cloud.google.com/go/tpu", 2775 + sum = "h1:ztIdKoma1Xob2qm6QwNh4Xi9/e7N3IfvtwG5AcNsj1g=", 2776 + version = "v1.4.0", 2777 + ) 2778 + go_repository( 2779 + name = "com_google_cloud_go_trace", 2780 + build_file_proto_mode = "disable_global", 2781 + importpath = "cloud.google.com/go/trace", 2782 + sum = "h1:qO9eLn2esajC9sxpqp1YKX37nXC3L4BfGnPS0Cx9dYo=", 2783 + version = "v1.4.0", 2784 + ) 2785 + go_repository( 2786 + name = "com_google_cloud_go_translate", 2787 + build_file_proto_mode = "disable_global", 2788 + importpath = "cloud.google.com/go/translate", 2789 + sum = "h1:AOYOH3MspzJ/bH1YXzB+xTE8fMpn3mwhLjugwGXvMPI=", 2790 + version = "v1.4.0", 2791 + ) 2792 + go_repository( 2793 + name = "com_google_cloud_go_video", 2794 + build_file_proto_mode = "disable_global", 2795 + importpath = "cloud.google.com/go/video", 2796 + sum = "h1:ttlvO4J5c1VGq6FkHqWPD/aH6PfdxujHt+muTJlW1Zk=", 2797 + version = "v1.9.0", 2798 + ) 2799 + go_repository( 2800 + name = "com_google_cloud_go_videointelligence", 2801 + build_file_proto_mode = "disable_global", 2802 + importpath = "cloud.google.com/go/videointelligence", 2803 + sum = "h1:RPFgVVXbI2b5vnrciZjtsUgpNKVtHO/WIyXUhEfuMhA=", 2804 + version = "v1.9.0", 2805 + ) 2806 + go_repository( 2807 + name = "com_google_cloud_go_vision_v2", 2808 + build_file_proto_mode = "disable_global", 2809 + importpath = "cloud.google.com/go/vision/v2", 2810 + sum = "h1:TQHxRqvLMi19azwm3qYuDbEzZWmiKJNTpGbkNsfRCik=", 2811 + version = "v2.5.0", 2812 + ) 2813 + go_repository( 2814 + name = "com_google_cloud_go_vmmigration", 2815 + build_file_proto_mode = "disable_global", 2816 + importpath = "cloud.google.com/go/vmmigration", 2817 + sum = "h1:A2Tl2ZmwMRpvEmhV2ibISY85fmQR+Y5w9a0PlRz5P3s=", 2818 + version = "v1.3.0", 2819 + ) 2820 + go_repository( 2821 + name = "com_google_cloud_go_vmwareengine", 2822 + build_file_proto_mode = "disable_global", 2823 + importpath = "cloud.google.com/go/vmwareengine", 2824 + sum = "h1:JMPZaOT/gIUxVlTqSl/QQ32Y2k+r0stNeM1NSqhVP9o=", 2825 + version = "v0.1.0", 2826 + ) 2827 + go_repository( 2828 + name = "com_google_cloud_go_vpcaccess", 2829 + build_file_proto_mode = "disable_global", 2830 + importpath = "cloud.google.com/go/vpcaccess", 2831 + sum = "h1:woHXXtnW8b9gLFdWO9HLPalAddBQ9V4LT+1vjKwR3W8=", 2832 + version = "v1.5.0", 2833 + ) 2834 + go_repository( 2835 + name = "com_google_cloud_go_webrisk", 2836 + build_file_proto_mode = "disable_global", 2837 + importpath = "cloud.google.com/go/webrisk", 2838 + sum = "h1:ypSnpGlJnZSXbN9a13PDmAYvVekBLnGKxQ3Q9SMwnYY=", 2839 + version = "v1.7.0", 2840 + ) 2841 + go_repository( 2842 + name = "com_google_cloud_go_websecurityscanner", 2843 + build_file_proto_mode = "disable_global", 2844 + importpath = "cloud.google.com/go/websecurityscanner", 2845 + sum = "h1:y7yIFg/h/mO+5Y5aCOtVAnpGUOgqCH5rXQ2Oc8Oq2+g=", 2846 + version = "v1.4.0", 2847 + ) 2848 + go_repository( 2849 + name = "com_google_cloud_go_workflows", 2850 + build_file_proto_mode = "disable_global", 2851 + importpath = "cloud.google.com/go/workflows", 2852 + sum = "h1:7Chpin9p50NTU8Tb7qk+I11U/IwVXmDhEoSsdccvInE=", 2853 + version = "v1.9.0", 2854 + ) 2855 + go_repository( 2856 + name = "com_shuralyov_dmitri_gpu_mtl", 2857 + build_file_proto_mode = "disable_global", 2858 + importpath = "dmitri.shuralyov.com/gpu/mtl", 2859 + sum = "h1:VpgP7xuJadIUuKccphEpTJnWhS2jkQyMt6Y7pJCD7fY=", 2860 + version = "v0.0.0-20190408044501-666a987793e9", 2861 + ) 2862 + go_repository( 2863 + name = "dev_bobheadxi_go_streamline", 2864 + build_file_proto_mode = "disable_global", 2865 + importpath = "go.bobheadxi.dev/streamline", 2866 + sum = "h1:Mv2NE8svJMB5K7nIT9WGwF014yuY/lPXtT8mvNr1OrU=", 2867 + version = "v1.2.2", 2868 + ) 2869 + go_repository( 2870 + name = "in_gopkg_alecthomas_kingpin_v2", 2871 + build_file_proto_mode = "disable_global", 2872 + importpath = "gopkg.in/alecthomas/kingpin.v2", 2873 + sum = "h1:jMFz6MfLP0/4fUyZle81rXUoxOBFi19VUFKVDOQfozc=", 2874 + version = "v2.2.6", 2875 + ) 2876 + go_repository( 2877 + name = "in_gopkg_check_v1", 2878 + build_file_proto_mode = "disable_global", 2879 + importpath = "gopkg.in/check.v1", 2880 + sum = "h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=", 2881 + version = "v1.0.0-20201130134442-10cb98267c6c", 2882 + ) 2883 + go_repository( 2884 + name = "in_gopkg_errgo_v2", 2885 + build_file_proto_mode = "disable_global", 2886 + importpath = "gopkg.in/errgo.v2", 2887 + sum = "h1:0vLT13EuvQ0hNvakwLuFZ/jYrLp5F3kcWHXdRggjCE8=", 2888 + version = "v2.1.0", 2889 + ) 2890 + go_repository( 2891 + name = "in_gopkg_fsnotify_v1", 2892 + build_file_proto_mode = "disable_global", 2893 + importpath = "gopkg.in/fsnotify.v1", 2894 + sum = "h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4=", 2895 + version = "v1.4.7", 2896 + ) 2897 + go_repository( 2898 + name = "in_gopkg_go_playground_assert_v1", 2899 + build_file_proto_mode = "disable_global", 2900 + importpath = "gopkg.in/go-playground/assert.v1", 2901 + sum = "h1:xoYuJVE7KT85PYWrN730RguIQO0ePzVRfFMXadIrXTM=", 2902 + version = "v1.2.1", 2903 + ) 2904 + go_repository( 2905 + name = "in_gopkg_go_playground_validator_v8", 2906 + build_file_proto_mode = "disable_global", 2907 + importpath = "gopkg.in/go-playground/validator.v8", 2908 + sum = "h1:lFB4DoMU6B626w8ny76MV7VX6W2VHct2GVOI3xgiMrQ=", 2909 + version = "v8.18.2", 2910 + ) 2911 + go_repository( 2912 + name = "in_gopkg_ini_v1", 2913 + build_file_proto_mode = "disable_global", 2914 + importpath = "gopkg.in/ini.v1", 2915 + sum = "h1:Dgnx+6+nfE+IfzjUEISNeydPJh9AXNNsWbGP9KzCsOA=", 2916 + version = "v1.67.0", 2917 + ) 2918 + go_repository( 2919 + name = "in_gopkg_mgo_v2", 2920 + build_file_proto_mode = "disable_global", 2921 + importpath = "gopkg.in/mgo.v2", 2922 + sum = "h1:xcEWjVhvbDy+nHP67nPDDpbYrY+ILlfndk4bRioVHaU=", 2923 + version = "v2.0.0-20180705113604-9856a29383ce", 2924 + ) 2925 + go_repository( 2926 + name = "in_gopkg_natefinch_lumberjack_v2", 2927 + build_file_proto_mode = "disable_global", 2928 + importpath = "gopkg.in/natefinch/lumberjack.v2", 2929 + sum = "h1:bBRl1b0OH9s/DuPhuXpNl+VtCaJXFZ5/uEFST95x9zc=", 2930 + version = "v2.2.1", 2931 + ) 2932 + go_repository( 2933 + name = "in_gopkg_tomb_v1", 2934 + build_file_proto_mode = "disable_global", 2935 + importpath = "gopkg.in/tomb.v1", 2936 + sum = "h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ=", 2937 + version = "v1.0.0-20141024135613-dd632973f1e7", 2938 + ) 2939 + go_repository( 2940 + name = "in_gopkg_warnings_v0", 2941 + build_file_proto_mode = "disable_global", 2942 + importpath = "gopkg.in/warnings.v0", 2943 + sum = "h1:wFXVbFY8DY5/xOe1ECiWdKCzZlxgshcYVNkBHstARME=", 2944 + version = "v0.1.2", 2945 + ) 2946 + go_repository( 2947 + name = "in_gopkg_yaml_v2", 2948 + build_file_proto_mode = "disable_global", 2949 + importpath = "gopkg.in/yaml.v2", 2950 + sum = "h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=", 2951 + version = "v2.4.0", 2952 + ) 2953 + go_repository( 2954 + name = "in_gopkg_yaml_v3", 2955 + build_file_proto_mode = "disable_global", 2956 + importpath = "gopkg.in/yaml.v3", 2957 + sum = "h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=", 2958 + version = "v3.0.1", 2959 + ) 2960 + go_repository( 2961 + name = "io_opencensus_go", 2962 + build_file_proto_mode = "disable_global", 2963 + importpath = "go.opencensus.io", 2964 + sum = "h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0=", 2965 + version = "v0.24.0", 2966 + ) 2967 + go_repository( 2968 + name = "io_opentelemetry_go_contrib_propagators_jaeger", 2969 + build_file_proto_mode = "disable_global", 2970 + importpath = "go.opentelemetry.io/contrib/propagators/jaeger", 2971 + sum = "h1:j6Xah53xRDrR+K1c4Y1uVHA0ESo69xDOblw+3OrVoF4=", 2972 + version = "v1.14.0", 2973 + ) 2974 + go_repository( 2975 + name = "io_opentelemetry_go_contrib_propagators_ot", 2976 + build_file_proto_mode = "disable_global", 2977 + importpath = "go.opentelemetry.io/contrib/propagators/ot", 2978 + sum = "h1:jqxznjMkz/3l4NUsYq4OMbP+zs5twBbCZwSlSt82KXo=", 2979 + version = "v1.14.0", 2980 + ) 2981 + go_repository( 2982 + name = "io_opentelemetry_go_otel", 2983 + build_file_proto_mode = "disable_global", 2984 + importpath = "go.opentelemetry.io/otel", 2985 + sum = "h1:1ZAKnNQKwBBxFtww/GwxNUyTf0AxkZzrukO8MeXqe4Y=", 2986 + version = "v1.13.0", 2987 + ) 2988 + go_repository( 2989 + name = "io_opentelemetry_go_otel_bridge_opentracing", 2990 + build_file_proto_mode = "disable_global", 2991 + importpath = "go.opentelemetry.io/otel/bridge/opentracing", 2992 + sum = "h1:qTmCTJC4yNtmTSnPfUijzY1/QlwqU5vXibCn6Ug64JE=", 2993 + version = "v1.13.0", 2994 + ) 2995 + go_repository( 2996 + name = "io_opentelemetry_go_otel_exporters_otlp_internal_retry", 2997 + build_file_proto_mode = "disable_global", 2998 + importpath = "go.opentelemetry.io/otel/exporters/otlp/internal/retry", 2999 + sum = "h1:pa05sNT/P8OsIQ8mPZKTIyiBuzS/xDGLVx+DCt0y6Vs=", 3000 + version = "v1.13.0", 3001 + ) 3002 + go_repository( 3003 + name = "io_opentelemetry_go_otel_exporters_otlp_otlptrace", 3004 + build_file_proto_mode = "disable_global", 3005 + importpath = "go.opentelemetry.io/otel/exporters/otlp/otlptrace", 3006 + sum = "h1:Any/nVxaoMq1T2w0W85d6w5COlLuCCgOYKQhJJWEMwQ=", 3007 + version = "v1.13.0", 3008 + ) 3009 + go_repository( 3010 + name = "io_opentelemetry_go_otel_exporters_otlp_otlptrace_otlptracegrpc", 3011 + build_file_proto_mode = "disable_global", 3012 + importpath = "go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc", 3013 + sum = "h1:Wz7UQn7/eIqZVDJbuNEM6PmqeA71cWXrWcXekP5HZgU=", 3014 + version = "v1.13.0", 3015 + ) 3016 + go_repository( 3017 + name = "io_opentelemetry_go_otel_exporters_otlp_otlptrace_otlptracehttp", 3018 + build_file_proto_mode = "disable_global", 3019 + importpath = "go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp", 3020 + sum = "h1:Ntu7izEOIRHEgQNjbGc7j3eNtYMAiZfElJJ4JiiRDH4=", 3021 + version = "v1.13.0", 3022 + ) 3023 + go_repository( 3024 + name = "io_opentelemetry_go_otel_sdk", 3025 + build_file_proto_mode = "disable_global", 3026 + importpath = "go.opentelemetry.io/otel/sdk", 3027 + sum = "h1:BHib5g8MvdqS65yo2vV1s6Le42Hm6rrw08qU6yz5JaM=", 3028 + version = "v1.13.0", 3029 + ) 3030 + go_repository( 3031 + name = "io_opentelemetry_go_otel_trace", 3032 + build_file_proto_mode = "disable_global", 3033 + importpath = "go.opentelemetry.io/otel/trace", 3034 + sum = "h1:CBgRZ6ntv+Amuj1jDsMhZtlAPT6gbyIRdaIzFhfBSdY=", 3035 + version = "v1.13.0", 3036 + ) 3037 + go_repository( 3038 + name = "io_opentelemetry_go_proto_otlp", 3039 + build_file_proto_mode = "disable_global", 3040 + importpath = "go.opentelemetry.io/proto/otlp", 3041 + sum = "h1:IVN6GR+mhC4s5yfcTbmzHYODqvWAp3ZedA2SJPI1Nnw=", 3042 + version = "v0.19.0", 3043 + ) 3044 + go_repository( 3045 + name = "io_rsc_binaryregexp", 3046 + build_file_proto_mode = "disable_global", 3047 + importpath = "rsc.io/binaryregexp", 3048 + sum = "h1:HfqmD5MEmC0zvwBuF187nq9mdnXjXsSivRiXN7SmRkE=", 3049 + version = "v0.2.0", 3050 + ) 3051 + go_repository( 3052 + name = "io_rsc_pdf", 3053 + build_file_proto_mode = "disable_global", 3054 + importpath = "rsc.io/pdf", 3055 + sum = "h1:k1MczvYDUvJBe93bYd7wrZLLUEcLZAuF824/I4e5Xr4=", 3056 + version = "v0.1.1", 3057 + ) 3058 + go_repository( 3059 + name = "io_rsc_quote_v3", 3060 + build_file_proto_mode = "disable_global", 3061 + importpath = "rsc.io/quote/v3", 3062 + sum = "h1:9JKUTTIUgS6kzR9mK1YuGKv6Nl+DijDNIc0ghT58FaY=", 3063 + version = "v3.1.0", 3064 + ) 3065 + go_repository( 3066 + name = "io_rsc_sampler", 3067 + build_file_proto_mode = "disable_global", 3068 + importpath = "rsc.io/sampler", 3069 + sum = "h1:7uVkIFmeBqHfdjD+gZwtXXI+RODJ2Wc4O7MPEh/QiW4=", 3070 + version = "v1.3.0", 3071 + ) 3072 + go_repository( 3073 + name = "org_golang_google_api", 3074 + build_file_proto_mode = "disable_global", 3075 + importpath = "google.golang.org/api", 3076 + sum = "h1:l+rh0KYUooe9JGbGVx71tbFo4SMbMTXK3I3ia2QSEeU=", 3077 + version = "v0.110.0", 3078 + ) 3079 + go_repository( 3080 + name = "org_golang_google_appengine", 3081 + build_file_proto_mode = "disable_global", 3082 + importpath = "google.golang.org/appengine", 3083 + sum = "h1:FZR1q0exgwxzPzp/aF+VccGrSfxfPpkBqjIIEq3ru6c=", 3084 + version = "v1.6.7", 3085 + ) 3086 + go_repository( 3087 + name = "org_golang_google_genproto", 3088 + build_file_proto_mode = "disable_global", 3089 + importpath = "google.golang.org/genproto", 3090 + sum = "h1:ijGwO+0vL2hJt5gaygqP2j6PfflOBrRot0IczKbmtio=", 3091 + version = "v0.0.0-20230209215440-0dfe4f8abfcc", 3092 + ) 3093 + go_repository( 3094 + name = "org_golang_google_grpc", 3095 + build_file_proto_mode = "disable_global", 3096 + importpath = "google.golang.org/grpc", 3097 + sum = "h1:LAv2ds7cmFV/XTS3XG1NneeENYrXGmorPxsBbptIjNc=", 3098 + version = "v1.53.0", 3099 + ) 3100 + go_repository( 3101 + name = "org_golang_google_protobuf", 3102 + build_file_proto_mode = "disable_global", 3103 + importpath = "google.golang.org/protobuf", 3104 + sum = "h1:d0NfwRgPtno5B1Wa6L2DAG+KivqkdutMf1UhdNx175w=", 3105 + version = "v1.28.1", 3106 + ) 3107 + go_repository( 3108 + name = "org_golang_x_crypto", 3109 + build_file_proto_mode = "disable_global", 3110 + importpath = "golang.org/x/crypto", 3111 + sum = "h1:qfktjS5LUO+fFKeJXZ+ikTRijMmljikvG68fpMMruSc=", 3112 + version = "v0.6.0", 3113 + ) 3114 + go_repository( 3115 + name = "org_golang_x_exp", 3116 + build_file_proto_mode = "disable_global", 3117 + importpath = "golang.org/x/exp", 3118 + sum = "h1:QE6XYQK6naiK1EPAe1g/ILLxN5RBoH5xkJk3CqlMI/Y=", 3119 + version = "v0.0.0-20200224162631-6cc2880d07d6", 3120 + ) 3121 + go_repository( 3122 + name = "org_golang_x_image", 3123 + build_file_proto_mode = "disable_global", 3124 + importpath = "golang.org/x/image", 3125 + sum = "h1:+qEpEAPhDZ1o0x3tHzZTQDArnOixOzGD9HUJfcg0mb4=", 3126 + version = "v0.0.0-20190802002840-cff245a6509b", 3127 + ) 3128 + go_repository( 3129 + name = "org_golang_x_lint", 3130 + build_file_proto_mode = "disable_global", 3131 + importpath = "golang.org/x/lint", 3132 + sum = "h1:VLliZ0d+/avPrXXH+OakdXhpJuEoBZuwh1m2j7U6Iug=", 3133 + version = "v0.0.0-20210508222113-6edffad5e616", 3134 + ) 3135 + go_repository( 3136 + name = "org_golang_x_mobile", 3137 + build_file_proto_mode = "disable_global", 3138 + importpath = "golang.org/x/mobile", 3139 + sum = "h1:4+4C/Iv2U4fMZBiMCc98MG1In4gJY5YRhtpDNeDeHWs=", 3140 + version = "v0.0.0-20190719004257-d2bd2a29d028", 3141 + ) 3142 + go_repository( 3143 + name = "org_golang_x_mod", 3144 + build_file_proto_mode = "disable_global", 3145 + importpath = "golang.org/x/mod", 3146 + sum = "h1:LUYupSeNrTNCGzR/hVBk2NHZO4hXcVaW1k4Qx7rjPx8=", 3147 + version = "v0.8.0", 3148 + ) 3149 + go_repository( 3150 + name = "org_golang_x_net", 3151 + build_file_proto_mode = "disable_global", 3152 + importpath = "golang.org/x/net", 3153 + sum = "h1:rJrUqqhjsgNp7KqAIc25s9pZnjU7TUcSY7HcVZjdn1g=", 3154 + version = "v0.7.0", 3155 + ) 3156 + go_repository( 3157 + name = "org_golang_x_oauth2", 3158 + build_file_proto_mode = "disable_global", 3159 + importpath = "golang.org/x/oauth2", 3160 + sum = "h1:HuArIo48skDwlrvM3sEdHXElYslAMsf3KwRkkW4MC4s=", 3161 + version = "v0.5.0", 3162 + ) 3163 + go_repository( 3164 + name = "org_golang_x_sync", 3165 + build_file_proto_mode = "disable_global", 3166 + importpath = "golang.org/x/sync", 3167 + sum = "h1:wsuoTGHzEhffawBOhz5CYhcrV4IdKZbEyZjBMuTp12o=", 3168 + version = "v0.1.0", 3169 + ) 3170 + go_repository( 3171 + name = "org_golang_x_sys", 3172 + build_file_proto_mode = "disable_global", 3173 + importpath = "golang.org/x/sys", 3174 + sum = "h1:MUK/U/4lj1t1oPg0HfuXDN/Z1wv31ZJ/YcPiGccS4DU=", 3175 + version = "v0.5.0", 3176 + ) 3177 + go_repository( 3178 + name = "org_golang_x_term", 3179 + build_file_proto_mode = "disable_global", 3180 + importpath = "golang.org/x/term", 3181 + sum = "h1:n2a8QNdAb0sZNpU9R1ALUXBbY+w51fCQDN+7EdxNBsY=", 3182 + version = "v0.5.0", 3183 + ) 3184 + go_repository( 3185 + name = "org_golang_x_text", 3186 + build_file_proto_mode = "disable_global", 3187 + importpath = "golang.org/x/text", 3188 + sum = "h1:4BRB4x83lYWy72KwLD/qYDuTu7q9PjSagHvijDw7cLo=", 3189 + version = "v0.7.0", 3190 + ) 3191 + go_repository( 3192 + name = "org_golang_x_time", 3193 + build_file_proto_mode = "disable_global", 3194 + importpath = "golang.org/x/time", 3195 + sum = "h1:rg5rLMjNzMS1RkNLzCG38eapWhnYLFYXDXj2gOlr8j4=", 3196 + version = "v0.3.0", 3197 + ) 3198 + go_repository( 3199 + name = "org_golang_x_tools", 3200 + build_file_proto_mode = "disable_global", 3201 + importpath = "golang.org/x/tools", 3202 + sum = "h1:BOw41kyTf3PuCW1pVQf8+Cyg8pMlkYB1oo9iJ6D/lKM=", 3203 + version = "v0.6.0", 3204 + ) 3205 + go_repository( 3206 + name = "org_golang_x_xerrors", 3207 + build_file_proto_mode = "disable_global", 3208 + importpath = "golang.org/x/xerrors", 3209 + sum = "h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk=", 3210 + version = "v0.0.0-20220907171357-04be3eba64a2", 3211 + ) 3212 + go_repository( 3213 + name = "org_gonum_v1_gonum", 3214 + build_file_proto_mode = "disable_global", 3215 + importpath = "gonum.org/v1/gonum", 3216 + sum = "h1:CCXrcPKiGGotvnN6jfUsKk4rRqm7q09/YbKb5xCEvtM=", 3217 + version = "v0.8.2", 3218 + ) 3219 + go_repository( 3220 + name = "org_gonum_v1_netlib", 3221 + build_file_proto_mode = "disable_global", 3222 + importpath = "gonum.org/v1/netlib", 3223 + sum = "h1:OE9mWmgKkjJyEmDAAtGMPjXu+YNeGvK9VTSHY6+Qihc=", 3224 + version = "v0.0.0-20190313105609-8cb42192e0e0", 3225 + ) 3226 + go_repository( 3227 + name = "org_gonum_v1_plot", 3228 + build_file_proto_mode = "disable_global", 3229 + importpath = "gonum.org/v1/plot", 3230 + sum = "h1:Qh4dB5D/WpoUUp3lSod7qgoyEHbDGPUWjIbnqdqqe1k=", 3231 + version = "v0.0.0-20190515093506-e2840ee46a6b", 3232 + ) 3233 + go_repository( 3234 + name = "org_uber_go_atomic", 3235 + build_file_proto_mode = "disable_global", 3236 + importpath = "go.uber.org/atomic", 3237 + sum = "h1:9qC72Qh0+3MqyJbAn8YU5xVq1frD8bn3JtD2oXtafVQ=", 3238 + version = "v1.10.0", 3239 + ) 3240 + go_repository( 3241 + name = "org_uber_go_automaxprocs", 3242 + build_file_proto_mode = "disable_global", 3243 + importpath = "go.uber.org/automaxprocs", 3244 + sum = "h1:e1YG66Lrk73dn4qhg8WFSvhF0JuFQF0ERIp4rpuV8Qk=", 3245 + version = "v1.5.1", 3246 + ) 3247 + go_repository( 3248 + name = "org_uber_go_goleak", 3249 + build_file_proto_mode = "disable_global", 3250 + importpath = "go.uber.org/goleak", 3251 + sum = "h1:xqgm/S+aQvhWFTtR0XK3Jvg7z8kGV8P4X14IzwN3Eqk=", 3252 + version = "v1.2.0", 3253 + ) 3254 + go_repository( 3255 + name = "org_uber_go_multierr", 3256 + build_file_proto_mode = "disable_global", 3257 + importpath = "go.uber.org/multierr", 3258 + sum = "h1:7fIwc/ZtS0q++VgcfqFDxSBZVv/Xo49/SYnDFupUwlI=", 3259 + version = "v1.9.0", 3260 + ) 3261 + go_repository( 3262 + name = "org_uber_go_zap", 3263 + build_file_proto_mode = "disable_global", 3264 + importpath = "go.uber.org/zap", 3265 + sum = "h1:FiJd5l1UOLj0wCgbSE0rwwXHzEdAZS6hiiSnxJN/D60=", 3266 + version = "v1.24.0", 3267 + )
+54
gitindex/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") 2 + 3 + go_library( 4 + name = "gitindex", 5 + srcs = [ 6 + "clone.go", 7 + "delete.go", 8 + "filter.go", 9 + "index.go", 10 + "repocache.go", 11 + "submodule.go", 12 + "tree.go", 13 + ], 14 + importpath = "github.com/sourcegraph/zoekt/gitindex", 15 + visibility = ["//visibility:public"], 16 + deps = [ 17 + "//:zoekt", 18 + "//build", 19 + "//ignore", 20 + "@com_github_go_git_go_git_v5//:go-git", 21 + "@com_github_go_git_go_git_v5//config", 22 + "@com_github_go_git_go_git_v5//plumbing", 23 + "@com_github_go_git_go_git_v5//plumbing/filemode", 24 + "@com_github_go_git_go_git_v5//plumbing/format/config", 25 + "@com_github_go_git_go_git_v5//plumbing/object", 26 + "@com_github_grafana_regexp//:regexp", 27 + ], 28 + ) 29 + 30 + go_test( 31 + name = "gitindex_test", 32 + srcs = [ 33 + "clone_test.go", 34 + "delete_test.go", 35 + "ignore_test.go", 36 + "index_test.go", 37 + "repocache_test.go", 38 + "submodule_test.go", 39 + "tree_test.go", 40 + ], 41 + embed = [":gitindex"], 42 + deps = [ 43 + "//:zoekt", 44 + "//build", 45 + "//ignore", 46 + "//query", 47 + "//shards", 48 + "@com_github_go_git_go_git_v5//:go-git", 49 + "@com_github_go_git_go_git_v5//plumbing", 50 + "@com_github_google_go_cmp//cmp", 51 + "@com_github_google_go_cmp//cmp/cmpopts", 52 + "@com_github_grafana_regexp//:regexp", 53 + ], 54 + )
+16
ignore/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") 2 + 3 + go_library( 4 + name = "ignore", 5 + srcs = ["ignore.go"], 6 + importpath = "github.com/sourcegraph/zoekt/ignore", 7 + visibility = ["//visibility:public"], 8 + deps = ["@com_github_gobwas_glob//:glob"], 9 + ) 10 + 11 + go_test( 12 + name = "ignore_test", 13 + srcs = ["ignore_test.go"], 14 + embed = [":ignore"], 15 + deps = ["@com_github_gobwas_glob//:glob"], 16 + )
+12
internal/mockSearcher/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_library") 2 + 3 + go_library( 4 + name = "mockSearcher", 5 + srcs = ["mock_searcher.go"], 6 + importpath = "github.com/sourcegraph/zoekt/internal/mockSearcher", 7 + visibility = ["//:__subpackages__"], 8 + deps = [ 9 + "//:zoekt", 10 + "//query", 11 + ], 12 + )
+8
internal/otlpenv/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_library") 2 + 3 + go_library( 4 + name = "otlpenv", 5 + srcs = ["otlpenv.go"], 6 + importpath = "github.com/sourcegraph/zoekt/internal/otlpenv", 7 + visibility = ["//:__subpackages__"], 8 + )
+9
internal/profiler/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_library") 2 + 3 + go_library( 4 + name = "profiler", 5 + srcs = ["profiler.go"], 6 + importpath = "github.com/sourcegraph/zoekt/internal/profiler", 7 + visibility = ["//:__subpackages__"], 8 + deps = ["@com_google_cloud_go_profiler//:profiler"], 9 + )
+31
internal/tracer/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_library") 2 + 3 + go_library( 4 + name = "tracer", 5 + srcs = [ 6 + "jaeger.go", 7 + "opentelemetry.go", 8 + "tracer.go", 9 + ], 10 + importpath = "github.com/sourcegraph/zoekt/internal/tracer", 11 + visibility = ["//:__subpackages__"], 12 + deps = [ 13 + "//internal/otlpenv", 14 + "@com_github_opentracing_opentracing_go//:opentracing-go", 15 + "@com_github_pkg_errors//:errors", 16 + "@com_github_uber_jaeger_client_go//:jaeger-client-go", 17 + "@com_github_uber_jaeger_client_go//config", 18 + "@com_github_uber_jaeger_lib//metrics", 19 + "@io_opentelemetry_go_contrib_propagators_jaeger//:jaeger", 20 + "@io_opentelemetry_go_contrib_propagators_ot//:ot", 21 + "@io_opentelemetry_go_otel//:otel", 22 + "@io_opentelemetry_go_otel//propagation", 23 + "@io_opentelemetry_go_otel//semconv/v1.4.0:v1_4_0", 24 + "@io_opentelemetry_go_otel_bridge_opentracing//:opentracing", 25 + "@io_opentelemetry_go_otel_exporters_otlp_otlptrace//:otlptrace", 26 + "@io_opentelemetry_go_otel_exporters_otlp_otlptrace_otlptracegrpc//:otlptracegrpc", 27 + "@io_opentelemetry_go_otel_exporters_otlp_otlptrace_otlptracehttp//:otlptracehttp", 28 + "@io_opentelemetry_go_otel_sdk//resource", 29 + "@io_opentelemetry_go_otel_sdk//trace", 30 + ], 31 + )
+23
json/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") 2 + 3 + go_library( 4 + name = "json", 5 + srcs = ["json.go"], 6 + importpath = "github.com/sourcegraph/zoekt/json", 7 + visibility = ["//visibility:public"], 8 + deps = [ 9 + "//:zoekt", 10 + "//query", 11 + ], 12 + ) 13 + 14 + go_test( 15 + name = "json_test", 16 + srcs = ["json_test.go"], 17 + deps = [ 18 + ":json", 19 + "//:zoekt", 20 + "//internal/mockSearcher", 21 + "//query", 22 + ], 23 + )
+35
query/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") 2 + 3 + go_library( 4 + name = "query", 5 + srcs = [ 6 + "bits.go", 7 + "marshal.go", 8 + "parse.go", 9 + "query.go", 10 + "regexp.go", 11 + ], 12 + importpath = "github.com/sourcegraph/zoekt/query", 13 + visibility = ["//visibility:public"], 14 + deps = [ 15 + "@com_github_go_enry_go_enry_v2//:go-enry", 16 + "@com_github_grafana_regexp//:regexp", 17 + "@com_github_roaringbitmap_roaring//:roaring", 18 + ], 19 + ) 20 + 21 + go_test( 22 + name = "query_test", 23 + srcs = [ 24 + "marshal_test.go", 25 + "parse_test.go", 26 + "query_test.go", 27 + "regexp_test.go", 28 + ], 29 + embed = [":query"], 30 + deps = [ 31 + "@com_github_google_go_cmp//cmp", 32 + "@com_github_grafana_regexp//:regexp", 33 + "@com_github_roaringbitmap_roaring//:roaring", 34 + ], 35 + )
+27
rpc/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") 2 + 3 + go_library( 4 + name = "rpc", 5 + srcs = ["rpc.go"], 6 + importpath = "github.com/sourcegraph/zoekt/rpc", 7 + visibility = ["//visibility:public"], 8 + deps = [ 9 + "//:zoekt", 10 + "//query", 11 + "//rpc/internal/srv", 12 + "@com_github_keegancsmith_rpc//:rpc", 13 + ], 14 + ) 15 + 16 + go_test( 17 + name = "rpc_test", 18 + srcs = ["rpc_test.go"], 19 + deps = [ 20 + ":rpc", 21 + "//:zoekt", 22 + "//internal/mockSearcher", 23 + "//query", 24 + "@com_github_google_go_cmp//cmp", 25 + "@com_github_google_go_cmp//cmp/cmpopts", 26 + ], 27 + )
+12
rpc/internal/srv/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_library") 2 + 3 + go_library( 4 + name = "srv", 5 + srcs = ["srv.go"], 6 + importpath = "github.com/sourcegraph/zoekt/rpc/internal/srv", 7 + visibility = ["//rpc:__subpackages__"], 8 + deps = [ 9 + "//:zoekt", 10 + "//query", 11 + ], 12 + )
+45
shards/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") 2 + 3 + go_library( 4 + name = "shards", 5 + srcs = [ 6 + "aggregate.go", 7 + "eval.go", 8 + "sched.go", 9 + "shards.go", 10 + "watcher.go", 11 + ], 12 + importpath = "github.com/sourcegraph/zoekt/shards", 13 + visibility = ["//visibility:public"], 14 + deps = [ 15 + "//:zoekt", 16 + "//query", 17 + "//stream", 18 + "//trace", 19 + "@com_github_fsnotify_fsnotify//:fsnotify", 20 + "@com_github_prometheus_client_golang//prometheus", 21 + "@com_github_prometheus_client_golang//prometheus/promauto", 22 + "@org_golang_x_sync//semaphore", 23 + "@org_uber_go_atomic//:atomic", 24 + ], 25 + ) 26 + 27 + go_test( 28 + name = "shards_test", 29 + srcs = [ 30 + "eval_test.go", 31 + "sched_test.go", 32 + "shards_test.go", 33 + "watcher_test.go", 34 + ], 35 + embed = [":shards"], 36 + deps = [ 37 + "//:zoekt", 38 + "//query", 39 + "//stream", 40 + "@com_github_google_go_cmp//cmp", 41 + "@com_github_google_go_cmp//cmp/cmpopts", 42 + "@com_github_grafana_regexp//:regexp", 43 + "@com_github_roaringbitmap_roaring//:roaring", 44 + ], 45 + )
+28
stream/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") 2 + 3 + go_library( 4 + name = "stream", 5 + srcs = [ 6 + "client.go", 7 + "stream.go", 8 + ], 9 + importpath = "github.com/sourcegraph/zoekt/stream", 10 + visibility = ["//visibility:public"], 11 + deps = [ 12 + "//:zoekt", 13 + "//query", 14 + "//rpc", 15 + ], 16 + ) 17 + 18 + go_test( 19 + name = "stream_test", 20 + srcs = ["stream_test.go"], 21 + embed = [":stream"], 22 + deps = [ 23 + "//:zoekt", 24 + "//internal/mockSearcher", 25 + "//query", 26 + "@com_github_google_go_cmp//cmp", 27 + ], 28 + )
+8
testdata/BUILD.bazel
··· 1 + # gazelle:exclude repo 2 + # gazelle:exclude repo2 3 + 4 + filegroup( 5 + name = "testdata", 6 + srcs = glob(["**"]), 7 + visibility = ["//visibility:public"], 8 + )
+17
trace/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_library") 2 + 3 + go_library( 4 + name = "trace", 5 + srcs = [ 6 + "opentracing.go", 7 + "trace.go", 8 + ], 9 + importpath = "github.com/sourcegraph/zoekt/trace", 10 + visibility = ["//visibility:public"], 11 + deps = [ 12 + "@com_github_opentracing_opentracing_go//:opentracing-go", 13 + "@com_github_opentracing_opentracing_go//ext", 14 + "@com_github_opentracing_opentracing_go//log", 15 + "@org_golang_x_net//trace", 16 + ], 17 + )
+35
web/BUILD.bazel
··· 1 + load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") 2 + 3 + go_library( 4 + name = "web", 5 + srcs = [ 6 + "api.go", 7 + "server.go", 8 + "snippets.go", 9 + "templates.go", 10 + "trace.go", 11 + ], 12 + importpath = "github.com/sourcegraph/zoekt/web", 13 + visibility = ["//visibility:public"], 14 + deps = [ 15 + "//:zoekt", 16 + "//json", 17 + "//query", 18 + "//rpc", 19 + "//stream", 20 + "//trace", 21 + "@com_github_grafana_regexp//:regexp", 22 + "@com_github_opentracing_opentracing_go//:opentracing-go", 23 + ], 24 + ) 25 + 26 + go_test( 27 + name = "web_test", 28 + srcs = ["e2e_test.go"], 29 + embed = [":web"], 30 + deps = [ 31 + "//:zoekt", 32 + "//query", 33 + "@com_github_google_go_cmp//cmp", 34 + ], 35 + )