|
1 | 1 | module github.com/dokku/dokku-event-listener
|
2 | 2 |
|
3 |
| -go 1.16 |
| 3 | +go 1.18 |
| 4 | + |
| 5 | +require ( |
| 6 | + github.com/docker/docker v20.10.15+incompatible |
| 7 | + github.com/rs/zerolog v1.26.1 |
| 8 | +) |
4 | 9 |
|
5 | 10 | require (
|
6 | 11 | github.com/Azure/go-ansiterm v0.0.0-20210608223527-2377c96fe795 // indirect
|
7 | 12 | github.com/Microsoft/go-winio v0.5.0 // indirect
|
8 |
| - github.com/containerd/containerd v1.5.7 // indirect |
9 |
| - github.com/docker/docker v20.10.9+incompatible |
| 13 | + github.com/docker/distribution v2.7.1+incompatible // indirect |
10 | 14 | github.com/docker/go-connections v0.4.0 // indirect
|
11 |
| - github.com/gorilla/mux v1.8.0 // indirect |
| 15 | + github.com/docker/go-units v0.4.0 // indirect |
| 16 | + github.com/gogo/protobuf v1.3.2 // indirect |
| 17 | + github.com/google/go-cmp v0.5.5 // indirect |
| 18 | + github.com/moby/term v0.0.0-20200312100748-672ec06f55cd // indirect |
12 | 19 | github.com/morikuni/aec v1.0.0 // indirect
|
13 |
| - github.com/rs/zerolog v1.26.1 |
| 20 | + github.com/opencontainers/go-digest v1.0.0 // indirect |
| 21 | + github.com/opencontainers/image-spec v1.0.1 // indirect |
| 22 | + github.com/pkg/errors v0.9.1 // indirect |
| 23 | + github.com/sirupsen/logrus v1.8.1 // indirect |
| 24 | + github.com/stretchr/testify v1.7.0 // indirect |
14 | 25 | golang.org/x/net v0.0.0-20211008194852-3b03d305991f // indirect
|
15 | 26 | golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac // indirect
|
16 | 27 | golang.org/x/time v0.0.0-20210611083556-38a9dc6acbc6 // indirect
|
17 |
| - google.golang.org/genproto v0.0.0-20211008145708-270636b82663 // indirect |
18 |
| - google.golang.org/grpc v1.41.0 // indirect |
| 28 | + gotest.tools/v3 v3.0.3 // indirect |
19 | 29 | )
|
20 |
| - |
21 |
| -replace github.com/docker/docker => github.com/docker/engine v0.0.0-20200309214505-aa6a9891b09c |
|
0 commit comments