mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-23 21:51:27 +00:00
ad0f7a5305
Upgrade to Go 1.20.5, Hydra v2 SDK, rules-go v0.44.2 (with proper resolves), protobuf v25.3 and mass upgrade of Go dependencies.
19 lines
644 B
Python
19 lines
644 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "status",
|
|
srcs = ["status.go"],
|
|
importmap = "peridot.resf.org/vendor/github.com/gogo/status",
|
|
importpath = "github.com/gogo/status",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/github.com/gogo/googleapis/google/rpc",
|
|
"//vendor/github.com/gogo/protobuf/proto",
|
|
"//vendor/github.com/gogo/protobuf/types",
|
|
"@com_github_golang_protobuf//ptypes/any",
|
|
"@org_golang_google_genproto_googleapis_rpc//status",
|
|
"@org_golang_google_grpc//codes",
|
|
"@org_golang_google_grpc//status",
|
|
],
|
|
)
|