peridot/vendor/github.com/skeema/knownhosts/BUILD.bazel
2024-10-16 12:56:53 +02:00

14 lines
405 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "knownhosts",
srcs = ["knownhosts.go"],
importmap = "peridot.resf.org/vendor/github.com/skeema/knownhosts",
importpath = "github.com/skeema/knownhosts",
visibility = ["//visibility:public"],
deps = [
"//vendor/golang.org/x/crypto/ssh",
"//vendor/golang.org/x/crypto/ssh/knownhosts",
],
)