mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-05-02 03:02:54 -04:00
* add maxprocs * add prereqs * add tos and version pkg * add in all runtime packages Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
13 lines
379 B
Python
13 lines
379 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["maxprocs.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/runtime/maxprocs",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
"@org_uber_go_automaxprocs//maxprocs:go_default_library",
|
|
],
|
|
)
|