mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-23 05:31:30 +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
477 B
Python
20 lines
477 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "cert",
|
|
srcs = [
|
|
"cert.go",
|
|
"csr.go",
|
|
"io.go",
|
|
"pem.go",
|
|
"server_inspection.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/k8s.io/client-go/util/cert",
|
|
importpath = "k8s.io/client-go/util/cert",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/k8s.io/client-go/util/keyutil",
|
|
"//vendor/k8s.io/utils/net",
|
|
],
|
|
)
|