go.mod 692 B

1234567891011121314151617181920
  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/text v0.3.5 // indirect
  12. golang.org/x/tools v0.1.1 // indirect
  13. golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
  14. google.golang.org/genproto v0.0.0-20210224155714-063164c882e6
  15. google.golang.org/grpc v1.37.0
  16. gopkg.in/yaml.v2 v2.3.0 // indirect
  17. gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
  18. )