2022-12-14 13:37:00 +00:00
|
|
|
module github.com/jangraefen/hcloud-pricing-exporter
|
|
|
|
|
2024-01-17 19:26:40 +00:00
|
|
|
go 1.20
|
2022-12-14 13:45:48 +00:00
|
|
|
|
2022-12-14 13:37:00 +00:00
|
|
|
require (
|
2024-01-17 16:49:34 +00:00
|
|
|
github.com/hetznercloud/hcloud-go/v2 v2.6.0
|
2022-12-14 13:37:00 +00:00
|
|
|
github.com/jtaczanowski/go-scheduler v0.1.0
|
2024-02-12 04:30:32 +00:00
|
|
|
github.com/onsi/ginkgo/v2 v2.15.0
|
|
|
|
github.com/onsi/gomega v1.31.1
|
2024-01-15 19:02:59 +00:00
|
|
|
github.com/prometheus/client_golang v1.18.0
|
2024-02-12 04:30:32 +00:00
|
|
|
golang.org/x/crypto v0.19.0
|
2023-02-20 18:22:50 +00:00
|
|
|
)
|
|
|
|
|
2022-12-14 13:37:00 +00:00
|
|
|
require (
|
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
2023-05-07 13:10:30 +00:00
|
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
2022-12-28 23:56:37 +00:00
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
2023-12-18 23:22:27 +00:00
|
|
|
github.com/go-logr/logr v1.3.0 // indirect
|
2024-01-17 16:49:34 +00:00
|
|
|
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
|
2023-12-18 23:22:27 +00:00
|
|
|
github.com/google/go-cmp v0.6.0 // indirect
|
2024-01-17 16:49:34 +00:00
|
|
|
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
|
2024-01-15 19:02:59 +00:00
|
|
|
github.com/prometheus/client_model v0.5.0 // indirect
|
2024-01-17 16:49:34 +00:00
|
|
|
github.com/prometheus/common v0.46.0 // indirect
|
2024-01-15 19:02:59 +00:00
|
|
|
github.com/prometheus/procfs v0.12.0 // indirect
|
2024-01-17 16:49:34 +00:00
|
|
|
golang.org/x/net v0.20.0 // indirect
|
2024-02-12 04:30:32 +00:00
|
|
|
golang.org/x/sys v0.17.0 // indirect
|
2023-12-18 23:19:41 +00:00
|
|
|
golang.org/x/text v0.14.0 // indirect
|
2024-01-17 16:49:34 +00:00
|
|
|
golang.org/x/tools v0.16.1 // indirect
|
|
|
|
google.golang.org/protobuf v1.32.0 // indirect
|
2022-12-28 23:56:37 +00:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
2022-12-14 13:37:00 +00:00
|
|
|
)
|