mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 15:37:56 -05:00
28 lines
958 B
Python
28 lines
958 B
Python
load("@prysm//tools/go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["utils.go"],
|
|
importpath = "github.com/OffchainLabs/prysm/v7/crypto/ecdsa",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@com_github_btcsuite_btcd_btcec_v2//:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//crypto:go_default_library",
|
|
"@com_github_libp2p_go_libp2p//core/crypto:go_default_library",
|
|
"@com_github_pkg_errors//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["utils_test.go"],
|
|
embed = [":go_default_library"],
|
|
deps = [
|
|
"//testing/assert:go_default_library",
|
|
"//testing/require:go_default_library",
|
|
"@com_github_btcsuite_btcd_btcec_v2//:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//crypto:go_default_library",
|
|
"@com_github_libp2p_go_libp2p//core/crypto:go_default_library",
|
|
],
|
|
)
|