go.mod 822 B

12345678910111213141516171819202122
  1. module github.com/jamesread/OliveTin
  2. go 1.15
  3. require (
  4. github.com/golang/protobuf v1.5.2
  5. github.com/grpc-ecosystem/grpc-gateway v1.16.0
  6. github.com/grpc-ecosystem/grpc-gateway/v2 v2.3.0
  7. github.com/sirupsen/logrus v1.8.1
  8. github.com/spf13/pflag v1.0.5 // indirect
  9. github.com/spf13/viper v1.7.1
  10. github.com/stretchr/testify v1.7.0 // indirect
  11. golang.org/x/net v0.0.0-20210119194325-5f4716e94777 // indirect
  12. golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c // indirect
  13. golang.org/x/text v0.3.5 // indirect
  14. golang.org/x/tools v0.1.0 // indirect
  15. golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
  16. google.golang.org/genproto v0.0.0-20210224155714-063164c882e6
  17. google.golang.org/grpc v1.37.0
  18. gopkg.in/yaml.v2 v2.3.0 // indirect
  19. gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
  20. )