go.mod 687 B

12345678910111213141516171819202122
  1. module github.com/docker/api
  2. go 1.13
  3. require (
  4. github.com/golang/protobuf v1.4.0
  5. github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
  6. github.com/mitchellh/go-homedir v1.1.0
  7. github.com/opencontainers/go-digest v1.0.0-rc1
  8. github.com/pkg/errors v0.9.1
  9. github.com/prometheus/client_golang v1.5.1 // indirect
  10. github.com/sirupsen/logrus v1.5.0
  11. github.com/spf13/cobra v1.0.0
  12. github.com/spf13/pflag v1.0.5
  13. github.com/stretchr/testify v1.5.1
  14. github.com/urfave/cli/v2 v2.2.0
  15. golang.org/x/net v0.0.0-20191004110552-13f9640d40b9 // indirect
  16. golang.org/x/text v0.3.2 // indirect
  17. google.golang.org/grpc v1.29.1
  18. google.golang.org/protobuf v1.21.0
  19. gopkg.in/yaml.v2 v2.2.8 // indirect
  20. )