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
|
2024-09-06 06:55:39 +02:00
|
|
|
github.com/prometheus/client_golang v1.20.3
|
2023-06-05 07:00:15 +02:00
|
|
|
github.com/sirupsen/logrus v1.9.3
|
2024-03-04 05:48:49 +01:00
|
|
|
github.com/stretchr/testify v1.9.0
|
2021-09-02 06:17:03 +02:00
|
|
|
github.com/xonvanetta/shutdown v0.0.3
|
2024-09-06 06:55:34 +02:00
|
|
|
golang.org/x/net v0.29.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
|
2024-08-26 06:32:55 +02:00
|
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
2022-01-07 22:54:02 +01:00
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
2024-08-26 06:32:55 +02:00
|
|
|
github.com/klauspost/compress v1.17.9 // indirect
|
|
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // 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
|
2024-08-26 06:32:55 +02:00
|
|
|
github.com/prometheus/client_model v0.6.1 // indirect
|
|
|
|
github.com/prometheus/common v0.55.0 // indirect
|
|
|
|
github.com/prometheus/procfs v0.15.1 // indirect
|
2024-09-06 06:55:34 +02:00
|
|
|
golang.org/x/sys v0.25.0 // indirect
|
2024-08-26 06:32:55 +02:00
|
|
|
google.golang.org/protobuf v1.34.2 // 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
|
|
|
)
|