mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-18 19:31:25 +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.
31 lines
871 B
Python
31 lines
871 B
Python
load("@rules_proto//proto:defs.bzl", "proto_library")
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
|
|
|
|
proto_library(
|
|
name = "options_proto",
|
|
srcs = [
|
|
"annotations.proto",
|
|
"openapiv2.proto",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@com_google_protobuf//:descriptor_proto",
|
|
"@com_google_protobuf//:struct_proto",
|
|
],
|
|
)
|
|
|
|
go_proto_library(
|
|
name = "options_go_proto",
|
|
importpath = "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2/options",
|
|
proto = ":options_proto",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_library(
|
|
name = "options",
|
|
embed = [":options_go_proto"],
|
|
importpath = "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2/options",
|
|
visibility = ["//visibility:public"],
|
|
)
|