mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-11 00:41:23 +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.
16 lines
408 B
Python
16 lines
408 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "agent",
|
|
srcs = [
|
|
"client.go",
|
|
"forward.go",
|
|
"keyring.go",
|
|
"server.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/golang.org/x/crypto/ssh/agent",
|
|
importpath = "golang.org/x/crypto/ssh/agent",
|
|
visibility = ["//visibility:public"],
|
|
deps = ["//vendor/golang.org/x/crypto/ssh"],
|
|
)
|