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

Configure Feed

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

remove bazel (#634)

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