go.mod 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. module github.com/docker/api
  2. go 1.14
  3. require (
  4. github.com/AlecAivazis/survey/v2 v2.0.7
  5. github.com/Azure/azure-sdk-for-go v42.0.0+incompatible
  6. github.com/Azure/azure-storage-file-go v0.7.0
  7. github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
  8. github.com/Azure/go-autorest/autorest v0.10.2
  9. github.com/Azure/go-autorest/autorest/adal v0.8.2
  10. github.com/Azure/go-autorest/autorest/azure/cli v0.3.1
  11. github.com/Azure/go-autorest/autorest/date v0.2.0
  12. github.com/Azure/go-autorest/autorest/to v0.3.0
  13. github.com/Azure/go-autorest/autorest/validation v0.2.0 // indirect
  14. github.com/Microsoft/go-winio v0.4.14
  15. github.com/buger/goterm v0.0.0-20200322175922-2f3e71b85129
  16. github.com/compose-spec/compose-go v0.0.0-20200423124427-63dcf8c22cae
  17. github.com/containerd/console v1.0.0
  18. github.com/containerd/containerd v1.3.4 // indirect
  19. github.com/docker/cli v0.0.0-20200528204125-dd360c7c0de8
  20. github.com/docker/distribution v2.7.1+incompatible // indirect
  21. github.com/docker/docker v17.12.0-ce-rc1.0.20200309214505-aa6a9891b09c+incompatible
  22. github.com/docker/docker-credential-helpers v0.6.3 // indirect
  23. github.com/docker/go-connections v0.4.0
  24. github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee // indirect
  25. github.com/gobwas/pool v0.2.0 // indirect
  26. github.com/gobwas/ws v1.0.3
  27. github.com/golang/protobuf v1.4.2
  28. github.com/google/uuid v1.1.1
  29. github.com/gorilla/mux v1.7.4 // indirect
  30. github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
  31. github.com/hashicorp/go-multierror v1.1.0
  32. github.com/morikuni/aec v1.0.0 // indirect
  33. github.com/onsi/gomega v1.9.0
  34. github.com/opencontainers/go-digest v1.0.0
  35. github.com/opencontainers/image-spec v1.0.1 // indirect
  36. github.com/opencontainers/runc v0.1.1 // indirect
  37. github.com/pkg/errors v0.9.1
  38. github.com/prometheus/client_golang v1.5.1 // indirect
  39. github.com/robpike/filter v0.0.0-20150108201509-2984852a2183
  40. github.com/sirupsen/logrus v1.6.0
  41. github.com/spf13/cobra v1.0.0
  42. github.com/spf13/pflag v1.0.5
  43. github.com/stretchr/testify v1.5.1
  44. github.com/tj/survey v2.0.6+incompatible
  45. golang.org/x/net v0.0.0-20200425230154-ff2c4b7c35a0
  46. golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be
  47. golang.org/x/sys v0.0.0-20200519105757-fe76b779f299 // indirect
  48. golang.org/x/text v0.3.2 // indirect
  49. google.golang.org/grpc v1.29.1
  50. google.golang.org/protobuf v1.24.0
  51. gotest.tools v2.2.0+incompatible
  52. gotest.tools/v3 v3.0.2
  53. )