mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 21:57:16 +00:00
c5c7d40398
* finish the BLS API wrapper * all tests passing * unexported comment * gofmt tests for bls * slice * len * cap err string * tests * imports * gazelle
20 lines
530 B
Python
20 lines
530 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["bls.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/bls",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//shared/bytesutil:go_default_library",
|
|
"@com_github_phoreproject_bls//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["bls_test.go"],
|
|
embed = [":go_default_library"],
|
|
deps = ["//shared/bytesutil:go_default_library"],
|
|
)
|