mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-22 21:21:31 +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.
28 lines
747 B
Python
28 lines
747 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "chacha20",
|
|
srcs = [
|
|
"chacha_arm64.go",
|
|
"chacha_arm64.s",
|
|
"chacha_generic.go",
|
|
"chacha_noasm.go",
|
|
"chacha_ppc64le.go",
|
|
"chacha_ppc64le.s",
|
|
"chacha_s390x.go",
|
|
"chacha_s390x.s",
|
|
"xor.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/golang.org/x/crypto/chacha20",
|
|
importpath = "golang.org/x/crypto/chacha20",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/golang.org/x/crypto/internal/alias",
|
|
] + select({
|
|
"@io_bazel_rules_go//go/platform:s390x": [
|
|
"//vendor/golang.org/x/sys/cpu",
|
|
],
|
|
"//conditions:default": [],
|
|
}),
|
|
)
|