mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-22 13:11:27 +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.
27 lines
794 B
Python
27 lines
794 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "assert",
|
|
srcs = [
|
|
"assertion_compare.go",
|
|
"assertion_compare_can_convert.go",
|
|
"assertion_compare_legacy.go",
|
|
"assertion_format.go",
|
|
"assertion_forward.go",
|
|
"assertion_order.go",
|
|
"assertions.go",
|
|
"doc.go",
|
|
"errors.go",
|
|
"forward_assertions.go",
|
|
"http_assertions.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/github.com/stretchr/testify/assert",
|
|
importpath = "github.com/stretchr/testify/assert",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/github.com/davecgh/go-spew/spew",
|
|
"//vendor/github.com/pmezard/go-difflib/difflib",
|
|
"//vendor/gopkg.in/yaml.v3:yaml_v3",
|
|
],
|
|
)
|