go.mod 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. module base-gin
  2. go 1.17
  3. require (
  4. github.com/fvbock/endless v0.0.0-20170109170031-447134032cb6
  5. github.com/gin-gonic/gin v1.8.1
  6. github.com/go-sql-driver/mysql v1.6.0
  7. github.com/jinzhu/inflection v1.0.0
  8. github.com/opentracing/opentracing-go v1.2.0
  9. github.com/pkg/errors v0.9.1
  10. github.com/sirupsen/logrus v1.8.1
  11. github.com/uber/jaeger-client-go v2.30.0+incompatible
  12. gopkg.in/go-playground/validator.v8 v8.18.2
  13. gopkg.in/yaml.v2 v2.4.0
  14. )
  15. require (
  16. github.com/HdrHistogram/hdrhistogram-go v1.1.2 // indirect
  17. github.com/gin-contrib/sse v0.1.0 // indirect
  18. github.com/go-playground/locales v0.14.0 // indirect
  19. github.com/go-playground/universal-translator v0.18.0 // indirect
  20. github.com/go-playground/validator/v10 v10.11.0 // indirect
  21. github.com/goccy/go-json v0.9.9 // indirect
  22. github.com/json-iterator/go v1.1.12 // indirect
  23. github.com/leodido/go-urn v1.2.1 // indirect
  24. github.com/mattn/go-isatty v0.0.14 // indirect
  25. github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
  26. github.com/modern-go/reflect2 v1.0.2 // indirect
  27. github.com/pelletier/go-toml/v2 v2.0.2 // indirect
  28. github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
  29. github.com/ugorji/go/codec v1.2.7 // indirect
  30. go.uber.org/atomic v1.9.0 // indirect
  31. golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect
  32. golang.org/x/net v0.0.0-20220708220712-1185a9018129 // indirect
  33. golang.org/x/sys v0.0.0-20220712014510-0a85c31ab51e // indirect
  34. golang.org/x/text v0.3.7 // indirect
  35. golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
  36. google.golang.org/protobuf v1.28.0 // indirect
  37. gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
  38. )
  39. replace github.com/gin-gonic/gin v1.8.1 => github.com/goldenerr/gin v1.8.1
  40. replace github.com/jinzhu/inflection v1.0.0 => github.com/goldenerr/inflection v1.0.0