mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-18 19:31: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
425 B
Python
17 lines
425 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "xxhash",
|
|
srcs = [
|
|
"xxhash.go",
|
|
"xxhash_amd64.s",
|
|
"xxhash_arm64.s",
|
|
"xxhash_asm.go",
|
|
"xxhash_other.go",
|
|
"xxhash_unsafe.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/github.com/cespare/xxhash/v2",
|
|
importpath = "github.com/cespare/xxhash/v2",
|
|
visibility = ["//visibility:public"],
|
|
)
|