go.mod 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. module github.com/docker/compose-cli
  2. go 1.15
  3. // the distribution version from ecs plugin is quite old and it breaks containerd
  4. // we need to create a new release tag for docker/distribution
  5. replace github.com/docker/distribution => github.com/docker/distribution v0.0.0-20200708230824-53e18a9d9bfe
  6. require (
  7. github.com/AlecAivazis/survey/v2 v2.1.1
  8. github.com/Azure/azure-sdk-for-go v43.3.0+incompatible
  9. github.com/Azure/azure-storage-file-go v0.8.0
  10. github.com/Azure/go-autorest/autorest v0.11.4
  11. github.com/Azure/go-autorest/autorest/adal v0.9.2
  12. github.com/Azure/go-autorest/autorest/azure/auth v0.5.1
  13. github.com/Azure/go-autorest/autorest/azure/cli v0.4.0
  14. github.com/Azure/go-autorest/autorest/date v0.3.0
  15. github.com/Azure/go-autorest/autorest/to v0.4.0
  16. github.com/Azure/go-autorest/autorest/validation v0.2.0 // indirect
  17. github.com/Microsoft/go-winio v0.4.15-0.20190919025122-fc70bd9a86b5
  18. github.com/Microsoft/hcsshim v0.8.9 // indirect
  19. github.com/aws/aws-sdk-go v1.34.8
  20. github.com/awslabs/goformation/v4 v4.14.0
  21. github.com/buger/goterm v0.0.0-20200322175922-2f3e71b85129
  22. github.com/compose-spec/compose-go v0.0.0-20200818070525-eb1188aae4a2
  23. github.com/containerd/console v1.0.0
  24. github.com/containerd/containerd v1.3.5 // indirect
  25. github.com/docker/cli v0.0.0-20200528204125-dd360c7c0de8
  26. github.com/docker/distribution v0.0.0-00010101000000-000000000000 // indirect
  27. github.com/docker/docker v17.12.0-ce-rc1.0.20200309214505-aa6a9891b09c+incompatible
  28. github.com/docker/docker-credential-helpers v0.6.3 // indirect
  29. github.com/docker/go-connections v0.4.0
  30. github.com/docker/go-units v0.4.0
  31. github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee // indirect
  32. github.com/gobwas/pool v0.2.0 // indirect
  33. github.com/gobwas/ws v1.0.3
  34. github.com/golang/protobuf v1.4.2
  35. github.com/google/go-cmp v0.5.1
  36. github.com/google/uuid v1.1.1
  37. github.com/gorilla/mux v1.7.4 // indirect
  38. github.com/hashicorp/go-multierror v1.1.0
  39. github.com/joho/godotenv v1.3.0
  40. github.com/moby/term v0.0.0-20200611042045-63b9a826fb74
  41. github.com/morikuni/aec v1.0.0
  42. github.com/onsi/gomega v1.10.1 // indirect
  43. github.com/opencontainers/go-digest v1.0.0
  44. github.com/opencontainers/runc v0.1.1 // indirect
  45. github.com/pkg/errors v0.9.1
  46. github.com/sirupsen/logrus v1.6.0
  47. github.com/smartystreets/goconvey v1.6.4 // indirect
  48. github.com/spf13/cobra v1.0.0
  49. github.com/spf13/pflag v1.0.5
  50. github.com/stretchr/testify v1.6.1
  51. golang.org/x/net v0.0.0-20200625001655-4c5254603344
  52. golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
  53. golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208
  54. golang.org/x/sys v0.0.0-20200519105757-fe76b779f299 // indirect
  55. google.golang.org/grpc v1.31.0
  56. google.golang.org/protobuf v1.25.0
  57. gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
  58. gopkg.in/ini.v1 v1.60.0
  59. gotest.tools/v3 v3.0.2
  60. )