prysm-pulse/shared/ssz/BUILD.bazel
Jie Hou d38f3be8b9 SSZ: Support More Types (#1079)
* Add uint32 and uint64 support

* Add sample usage and its test

* BUILD file fix

* Add period in go doc comments.
2018-12-14 12:35:32 -06:00

24 lines
512 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = [
"decode.go",
"doc.go",
"encode.go",
"encoder_decoder_lib.go",
],
importpath = "github.com/prysmaticlabs/prysm/shared/ssz",
visibility = ["//visibility:public"],
)
go_test(
name = "go_default_test",
srcs = [
"decode_test.go",
"encode_test.go",
"example_and_test.go",
],
embed = [":go_default_library"],
)