Files
prysm/runtime/messagehandler/BUILD.bazel
Bastin 92bd211e4d upgrade v6 to v7 (#15989)
* upgrade v6 to v7

* changelog

* update-go-ssz
2025-11-06 16:16:23 +00:00

27 lines
864 B
Python

load("@prysm//tools/go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["messagehandler.go"],
importpath = "github.com/OffchainLabs/prysm/v7/runtime/messagehandler",
visibility = ["//visibility:public"],
deps = [
"//monitoring/tracing/trace:go_default_library",
"@com_github_libp2p_go_libp2p_pubsub//:go_default_library",
"@com_github_sirupsen_logrus//:go_default_library",
"@io_opentelemetry_go_otel//codes:go_default_library",
],
)
go_test(
name = "go_default_test",
size = "small",
srcs = ["messagehandler_test.go"],
deps = [
":go_default_library",
"//testing/require:go_default_library",
"@com_github_libp2p_go_libp2p_pubsub//:go_default_library",
"@com_github_sirupsen_logrus//hooks/test:go_default_library",
],
)