|
1 | 1 | module github.com/kumina/postfix_exporter
|
2 | 2 |
|
3 |
| -go 1.16 |
| 3 | +go 1.22 |
4 | 4 |
|
5 | 5 | require (
|
6 |
| - github.com/Microsoft/go-winio v0.5.0 // indirect |
7 | 6 | github.com/alecthomas/kingpin v2.2.6+incompatible
|
8 |
| - github.com/coreos/go-systemd/v22 v22.0.0 |
9 |
| - github.com/docker/distribution v2.7.1+incompatible // indirect |
10 |
| - github.com/docker/docker v1.13.1 |
11 |
| - github.com/docker/go-connections v0.4.0 // indirect |
12 |
| - github.com/docker/go-units v0.4.0 // indirect |
13 |
| - github.com/nxadm/tail v1.4.8 |
| 7 | + github.com/coreos/go-systemd/v22 v22.5.0 |
| 8 | + github.com/docker/docker v27.1.1+incompatible |
| 9 | + github.com/nxadm/tail v1.4.11 |
| 10 | + github.com/prometheus/client_golang v1.19.1 |
| 11 | + github.com/prometheus/client_model v0.6.1 |
| 12 | + github.com/stretchr/testify v1.9.0 |
| 13 | +) |
| 14 | + |
| 15 | +require ( |
| 16 | + github.com/Microsoft/go-winio v0.6.2 // indirect |
| 17 | + github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect |
| 18 | + github.com/alecthomas/units v0.0.0-20240626203959-61d1e3462e30 // indirect |
| 19 | + github.com/beorn7/perks v1.0.1 // indirect |
| 20 | + github.com/cespare/xxhash/v2 v2.3.0 // indirect |
| 21 | + github.com/containerd/log v0.1.0 // indirect |
| 22 | + github.com/davecgh/go-spew v1.1.1 // indirect |
| 23 | + github.com/distribution/reference v0.6.0 // indirect |
| 24 | + github.com/docker/go-connections v0.5.0 // indirect |
| 25 | + github.com/docker/go-units v0.5.0 // indirect |
| 26 | + github.com/felixge/httpsnoop v1.0.4 // indirect |
| 27 | + github.com/fsnotify/fsnotify v1.7.0 // indirect |
| 28 | + github.com/go-logr/logr v1.4.2 // indirect |
| 29 | + github.com/go-logr/stdr v1.2.2 // indirect |
| 30 | + github.com/gogo/protobuf v1.3.2 // indirect |
| 31 | + github.com/moby/docker-image-spec v1.3.1 // indirect |
| 32 | + github.com/moby/term v0.5.0 // indirect |
| 33 | + github.com/morikuni/aec v1.0.0 // indirect |
| 34 | + github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect |
14 | 35 | github.com/opencontainers/go-digest v1.0.0 // indirect
|
15 |
| - github.com/prometheus/client_golang v1.4.1 |
16 |
| - github.com/prometheus/client_model v0.2.0 |
17 |
| - github.com/stretchr/testify v1.4.0 |
| 36 | + github.com/opencontainers/image-spec v1.1.0 // indirect |
| 37 | + github.com/pkg/errors v0.9.1 // indirect |
| 38 | + github.com/pmezard/go-difflib v1.0.0 // indirect |
| 39 | + github.com/prometheus/common v0.55.0 // indirect |
| 40 | + github.com/prometheus/procfs v0.15.1 // indirect |
| 41 | + go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 // indirect |
| 42 | + go.opentelemetry.io/otel v1.28.0 // indirect |
| 43 | + go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.28.0 // indirect |
| 44 | + go.opentelemetry.io/otel/metric v1.28.0 // indirect |
| 45 | + go.opentelemetry.io/otel/sdk v1.28.0 // indirect |
| 46 | + go.opentelemetry.io/otel/trace v1.28.0 // indirect |
| 47 | + golang.org/x/net v0.27.0 // indirect |
| 48 | + golang.org/x/sys v0.23.0 // indirect |
| 49 | + golang.org/x/time v0.6.0 // indirect |
| 50 | + google.golang.org/protobuf v1.34.2 // indirect |
| 51 | + gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect |
| 52 | + gopkg.in/yaml.v3 v3.0.1 // indirect |
| 53 | + gotest.tools/v3 v3.5.1 // indirect |
18 | 54 | )
|
0 commit comments