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.
14 lines
405 B
Python
14 lines
405 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "protobuf",
|
|
srcs = ["build.pb.go"],
|
|
importmap = "peridot.resf.org/vendor/bazel.build/protobuf",
|
|
importpath = "bazel.build/protobuf",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@org_golang_google_protobuf//reflect/protoreflect",
|
|
"@org_golang_google_protobuf//runtime/protoimpl",
|
|
],
|
|
)
|