mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-10 16:31:24 +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.
20 lines
456 B
Python
20 lines
456 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "sets",
|
|
srcs = [
|
|
"byte.go",
|
|
"doc.go",
|
|
"empty.go",
|
|
"int.go",
|
|
"int32.go",
|
|
"int64.go",
|
|
"ordered.go",
|
|
"set.go",
|
|
"string.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/k8s.io/apimachinery/pkg/util/sets",
|
|
importpath = "k8s.io/apimachinery/pkg/util/sets",
|
|
visibility = ["//visibility:public"],
|
|
)
|