peridot/vendor/github.com/prometheus/common/expfmt/BUILD.bazel
Mustafa Gezen f330111606 govendor
2024-10-16 13:26:54 +02:00

24 lines
773 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",
],
)