mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-13 03:42:35 -06:00
9afdad7919
* Wrap the prometheus portion of our metrics in such a way that they use jsonpb for
encoding to JSON, as prescribed by the protobuf library.
Note: We're using jsonpb, not protojson, because there is no protobuf V2 version of
github.com/prometheus/client_golang
* build(deps): bump github.com/prometheus/client_golang (#4307)
This reverts commit 2f298db68c.
* CHANGELOG.md: add note re: JSON encoding of Status API payloads
Signed-off-by: Stephan Renatus <stephan.renatus@gmail.com>
50 lines
2.0 KiB
Modula-2
50 lines
2.0 KiB
Modula-2
module github.com/open-policy-agent/opa
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/OneOfOne/xxhash v1.2.8
|
|
github.com/bytecodealliance/wasmtime-go v0.34.0
|
|
github.com/dgraph-io/badger/v3 v3.2103.2
|
|
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect
|
|
github.com/fortytw2/leaktest v1.3.0
|
|
github.com/foxcpp/go-mockdns v0.0.0-20210729171921-fb145fc6f897
|
|
github.com/fsnotify/fsnotify v1.5.1
|
|
github.com/ghodss/yaml v1.0.0
|
|
github.com/go-ini/ini v1.66.4
|
|
github.com/go-logr/logr v1.2.2
|
|
github.com/gobwas/glob v0.2.3
|
|
github.com/golang/glog v1.0.0 // indirect
|
|
github.com/golang/protobuf v1.5.2
|
|
github.com/golang/snappy v0.0.4 // indirect
|
|
github.com/gorilla/mux v1.8.0
|
|
github.com/klauspost/compress v1.13.5 // indirect
|
|
github.com/kr/text v0.2.0 // indirect
|
|
github.com/miekg/dns v1.1.43 // indirect
|
|
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
|
|
github.com/olekukonko/tablewriter v0.0.5
|
|
github.com/peterh/liner v0.0.0-20170211195444-bf27d3ba8e1d
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/prometheus/client_golang v1.12.1
|
|
github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0
|
|
github.com/sirupsen/logrus v1.8.1
|
|
github.com/spf13/cobra v1.3.0
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
|
|
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415
|
|
github.com/yashtewari/glob-intersection v0.0.0-20180916065949-5c77d914dd0b
|
|
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.29.0
|
|
go.opentelemetry.io/otel v1.4.1
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.4.1
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.4.1
|
|
go.opentelemetry.io/otel/sdk v1.4.1
|
|
go.opentelemetry.io/otel/trace v1.4.1
|
|
go.uber.org/automaxprocs v1.4.0
|
|
golang.org/x/net v0.0.0-20211111083644-e5c967477495
|
|
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba
|
|
google.golang.org/grpc v1.44.0
|
|
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
)
|