2021-03-03 02:26:24 +00:00
|
|
|
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
|
|
|
|
go_library(
|
|
|
|
name = "go_default_library",
|
2021-06-30 15:06:19 +00:00
|
|
|
srcs = [
|
|
|
|
"altair.go",
|
2022-01-18 08:19:20 +00:00
|
|
|
"error.go",
|
2021-06-30 15:06:19 +00:00
|
|
|
"phase0.go",
|
2022-01-13 11:23:53 +00:00
|
|
|
"prometheus.go",
|
2021-06-30 15:06:19 +00:00
|
|
|
],
|
2021-07-23 16:11:21 +00:00
|
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/state",
|
2021-03-08 22:37:33 +00:00
|
|
|
visibility = [
|
|
|
|
"//beacon-chain:__subpackages__",
|
2021-09-22 17:27:13 +00:00
|
|
|
"//contracts/deposit:__subpackages__",
|
2021-09-29 18:17:37 +00:00
|
|
|
"//proto/prysm/v1alpha1:__subpackages__",
|
2021-03-08 22:37:33 +00:00
|
|
|
"//proto/testing:__subpackages__",
|
|
|
|
"//slasher/rpc:__subpackages__",
|
2021-09-14 19:18:15 +00:00
|
|
|
"//testing/benchmark:__pkg__",
|
2021-09-29 02:27:21 +00:00
|
|
|
"//testing/slasher/simulator:__pkg__",
|
2021-09-14 16:02:58 +00:00
|
|
|
"//testing/spectest:__subpackages__",
|
2021-09-23 18:53:46 +00:00
|
|
|
"//testing/util:__pkg__",
|
2021-03-08 22:37:33 +00:00
|
|
|
"//tools/benchmark-files-gen:__pkg__",
|
2021-07-16 22:24:16 +00:00
|
|
|
"//tools/exploredb:__pkg__",
|
2021-03-08 22:37:33 +00:00
|
|
|
"//tools/pcli:__pkg__",
|
|
|
|
],
|
2021-03-03 02:26:24 +00:00
|
|
|
deps = [
|
2022-01-06 17:33:08 +00:00
|
|
|
"//config/fieldparams:go_default_library",
|
2021-07-21 21:34:07 +00:00
|
|
|
"//proto/prysm/v1alpha1:go_default_library",
|
2022-01-13 11:23:53 +00:00
|
|
|
"@com_github_prometheus_client_golang//prometheus:go_default_library",
|
|
|
|
"@com_github_prometheus_client_golang//prometheus/promauto:go_default_library",
|
2021-03-03 02:26:24 +00:00
|
|
|
"@com_github_prysmaticlabs_eth2_types//:go_default_library",
|
|
|
|
"@com_github_prysmaticlabs_go_bitfield//:go_default_library",
|
|
|
|
],
|
|
|
|
)
|