go.mod 707 B

123456789101112131415161718192021222324
  1. module beejay.kim/craft/api
  2. go 1.20
  3. require (
  4. github.com/golang-jwt/jwt/v5 v5.0.0
  5. github.com/labstack/echo-jwt/v4 v4.2.0
  6. github.com/labstack/echo/v4 v4.11.1
  7. gopkg.in/yaml.v3 v3.0.1
  8. )
  9. require (
  10. github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
  11. github.com/labstack/gommon v0.4.0 // indirect
  12. github.com/mattn/go-colorable v0.1.13 // indirect
  13. github.com/mattn/go-isatty v0.0.19 // indirect
  14. github.com/valyala/bytebufferpool v1.0.0 // indirect
  15. github.com/valyala/fasttemplate v1.2.2 // indirect
  16. golang.org/x/crypto v0.12.0 // indirect
  17. golang.org/x/net v0.14.0 // indirect
  18. golang.org/x/sys v0.11.0 // indirect
  19. golang.org/x/text v0.12.0 // indirect
  20. golang.org/x/time v0.3.0 // indirect
  21. )