2019-05-08 23:45:04 +02:00
|
|
|
module github.com/eko/pihole-exporter
|
|
|
|
|
2023-03-02 20:44:38 +01:00
|
|
|
go 1.20
|
2019-05-08 23:45:04 +02:00
|
|
|
|
|
|
|
require (
|
2021-05-04 22:38:12 +02:00
|
|
|
github.com/heetch/confita v0.10.0
|
2023-05-04 06:58:57 +02:00
|
|
|
github.com/prometheus/client_golang v1.15.1
|
2023-05-18 06:59:55 +02:00
|
|
|
github.com/sirupsen/logrus v1.9.2
|
2023-05-20 16:06:09 +02:00
|
|
|
github.com/stretchr/testify v1.8.3
|
2021-09-02 06:17:03 +02:00
|
|
|
github.com/xonvanetta/shutdown v0.0.3
|
2023-05-09 06:59:16 +02:00
|
|
|
golang.org/x/net v0.10.0
|
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
|
2023-03-02 20:44:38 +01:00
|
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
2022-01-07 22:54:02 +01:00
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
2023-04-14 06:59:00 +02:00
|
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
2023-03-02 20:44:38 +01:00
|
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
|
2022-01-07 22:54:02 +01:00
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
2022-11-09 05:02:58 +01:00
|
|
|
github.com/prometheus/client_model v0.3.0 // indirect
|
2023-04-14 06:59:00 +02:00
|
|
|
github.com/prometheus/common v0.42.0 // indirect
|
2023-03-02 20:44:38 +01:00
|
|
|
github.com/prometheus/procfs v0.9.0 // indirect
|
2023-04-14 06:59:00 +02:00
|
|
|
github.com/rogpeppe/go-internal v1.10.0 // indirect
|
2023-05-09 06:59:16 +02:00
|
|
|
golang.org/x/sys v0.8.0 // indirect
|
2023-04-14 06:59:00 +02:00
|
|
|
google.golang.org/protobuf v1.30.0 // 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
|
|
|
)
|