prysm-pulse/container/thread-safe/BUILD.bazel
Raul Jordan b8bbeae740
Introduce Thread Safe Map Data Structure (#11940)
* fix thread safety issue

* gazelle

* push up benchmarks

* rev

* rem keys method

* shallow copy

* fxi
2023-02-01 14:32:01 +00:00

16 lines
407 B
Python

load("@prysm//tools/go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["map.go"],
importpath = "github.com/prysmaticlabs/prysm/v3/container/thread-safe",
visibility = ["//visibility:public"],
)
go_test(
name = "go_default_test",
srcs = ["map_test.go"],
embed = [":go_default_library"],
deps = ["//testing/require:go_default_library"],
)