2019-05-08 23:45:04 +02:00
|
|
|
module github.com/eko/pihole-exporter
|
|
|
|
|
2022-06-06 22:05:54 +02:00
|
|
|
go 1.18
|
2019-05-08 23:45:04 +02:00
|
|
|
|
|
|
|
require (
|
2021-05-04 22:38:12 +02:00
|
|
|
github.com/heetch/confita v0.10.0
|
2022-11-03 05:03:16 +01:00
|
|
|
github.com/prometheus/client_golang v1.13.1
|
2022-07-20 06:15:39 +02:00
|
|
|
github.com/sirupsen/logrus v1.9.0
|
2022-10-24 06:19:43 +02:00
|
|
|
github.com/stretchr/testify v1.8.1
|
2021-09-02 06:17:03 +02:00
|
|
|
github.com/xonvanetta/shutdown v0.0.3
|
2022-08-08 06:24:46 +02:00
|
|
|
golang.org/x/net v0.0.0-20220225172249-27dd8689420f
|
2019-05-08 23:45:04 +02:00
|
|
|
)
|
2022-01-07 22:54:02 +01:00
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
2022-01-30 11:23:26 +01:00
|
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
2022-01-07 22:54:02 +01:00
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
2022-01-30 11:23:26 +01:00
|
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
2022-01-07 22:54:02 +01:00
|
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
|
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
|
|
github.com/prometheus/client_model v0.2.0 // indirect
|
2022-08-08 06:24:46 +02:00
|
|
|
github.com/prometheus/common v0.37.0 // indirect
|
|
|
|
github.com/prometheus/procfs v0.8.0 // indirect
|
2022-07-20 06:15:39 +02:00
|
|
|
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
|
2022-08-08 06:24:46 +02:00
|
|
|
google.golang.org/protobuf v1.28.1 // indirect
|
2022-06-07 06:11:40 +02:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
2019-05-08 23:45:04 +02:00
|
|
|
)
|