mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 13:28:01 -05:00
* remove herumi * gaz * deprecate flag * remove source builds of herumi * remove * Revert "remove source builds of herumi" This reverts commitac7dd133ed. * disable blst * remove herumi hard requirement from fuzz * restrict viz, ensure all deps removed from fuzz * remove source builds * add back opts * add back herumi initialization * Revert "add back opts" This reverts commitad9b409b8a. * Revert "remove source builds" This reverts commitb78ee30dba. * Revert "restrict viz, ensure all deps removed from fuzz" This reverts commit65d951da93. * Revert "remove herumi hard requirement from fuzz" This reverts commitad92191d81. * redundant * add lock for rand generation Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com>
16 lines
433 B
Python
16 lines
433 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
# gazelle:resolve go github.com/herumi/bls-eth-go-binary/bls @herumi_bls_eth_go_binary//:go_default_library
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["init.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/bls/herumi",
|
|
visibility = [
|
|
"//shared/bls:__pkg__",
|
|
],
|
|
deps = [
|
|
"@herumi_bls_eth_go_binary//:go_default_library",
|
|
],
|
|
)
|