mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-14 17:51: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.
17 lines
422 B
Python
17 lines
422 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "net",
|
|
srcs = [
|
|
"ipfamily.go",
|
|
"ipnet.go",
|
|
"net.go",
|
|
"parse.go",
|
|
"port.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/k8s.io/utils/net",
|
|
importpath = "k8s.io/utils/net",
|
|
visibility = ["//visibility:public"],
|
|
deps = ["//vendor/k8s.io/utils/internal/third_party/forked/golang/net"],
|
|
)
|