2019-05-08 23:45:04 +02:00
|
|
|
module github.com/eko/pihole-exporter
|
|
|
|
|
2021-12-31 17:50:55 +01:00
|
|
|
go 1.17
|
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-01-31 05:12:38 +01:00
|
|
|
github.com/prometheus/client_golang v1.12.1
|
2021-12-26 23:36:30 +01:00
|
|
|
github.com/stretchr/testify v1.7.0
|
2021-09-02 06:17:03 +02:00
|
|
|
github.com/xonvanetta/shutdown v0.0.3
|
2022-01-30 11:23:26 +01:00
|
|
|
golang.org/x/net v0.0.0-20210525063256-abc453219eb5
|
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-02-10 11:11:57 +01:00
|
|
|
github.com/konsorten/go-windows-terminal-sequences v1.0.3 // 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-01-30 11:23:26 +01:00
|
|
|
github.com/prometheus/common v0.32.1 // indirect
|
|
|
|
github.com/prometheus/procfs v0.7.3 // indirect
|
|
|
|
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
|
|
|
|
google.golang.org/protobuf v1.26.0 // indirect
|
2022-01-07 22:54:02 +01:00
|
|
|
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
|
2019-05-08 23:45:04 +02:00
|
|
|
)
|