prysm-pulse/shared/keystore/BUILD.bazel
Nishant Das bc2afa04c6 Utilize Go-BLS in Prysm (#1367)
* removing redundant bls package

* gazelle

* battling bazel deps

* workspace

* go-bls works in prysm now

* add func and test

* add test

* fix tests

* edit workspace

* more verbose logs

* lint

* all tests passing

* handle error in keystore
2019-02-11 13:45:06 -05:00

33 lines
925 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = [
"key.go",
"keystore.go",
"utils.go",
],
importpath = "github.com/prysmaticlabs/prysm/shared/keystore",
visibility = ["//visibility:public"],
deps = [
"@com_github_ethereum_go_ethereum//crypto:go_default_library",
"@com_github_pborman_uuid//:go_default_library",
"@com_github_prysmaticlabs_go_bls//:go_default_library",
"@org_golang_x_crypto//pbkdf2:go_default_library",
"@org_golang_x_crypto//scrypt:go_default_library",
],
)
go_test(
name = "go_default_test",
srcs = [
"key_test.go",
"keystore_test.go",
],
embed = [":go_default_library"],
deps = [
"@com_github_pborman_uuid//:go_default_library",
"@com_github_prysmaticlabs_go_bls//:go_default_library",
],
)