2020-03-08 21:11:59 +00:00
|
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
|
|
|
|
go_library(
|
|
|
|
name = "go_default_library",
|
2020-04-02 03:08:23 +00:00
|
|
|
srcs = [
|
|
|
|
"span_cache.go",
|
|
|
|
"validators_cache.go",
|
|
|
|
],
|
2020-03-08 21:11:59 +00:00
|
|
|
importpath = "github.com/prysmaticlabs/prysm/slasher/cache",
|
|
|
|
visibility = ["//slasher:__subpackages__"],
|
|
|
|
deps = [
|
|
|
|
"//slasher/detection/attestations/types:go_default_library",
|
|
|
|
"@com_github_hashicorp_golang_lru//:go_default_library",
|
|
|
|
"@com_github_prometheus_client_golang//prometheus:go_default_library",
|
|
|
|
"@com_github_prometheus_client_golang//prometheus/promauto:go_default_library",
|
|
|
|
],
|
|
|
|
)
|