mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-05 14:31:22 +00:00
8176493bc0
Signed-off-by: Mustafa Gezen <mustafa@ctrliq.com>
24 lines
792 B
Python
24 lines
792 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "expfmt",
|
|
srcs = [
|
|
"decode.go",
|
|
"encode.go",
|
|
"expfmt.go",
|
|
"openmetrics_create.go",
|
|
"text_create.go",
|
|
"text_parse.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/github.com/prometheus/common/expfmt",
|
|
importpath = "github.com/prometheus/common/expfmt",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/github.com/matttproud/golang_protobuf_extensions/pbutil",
|
|
"//vendor/github.com/prometheus/client_model/go",
|
|
"//vendor/github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg",
|
|
"//vendor/github.com/prometheus/common/model",
|
|
"@com_github_golang_protobuf//proto:go_default_library",
|
|
],
|
|
)
|