go.mod 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. module github.com/usememos/memos
  2. go 1.19
  3. require github.com/mattn/go-sqlite3 v1.14.9
  4. require github.com/google/uuid v1.3.0
  5. require (
  6. golang.org/x/crypto v0.1.0
  7. golang.org/x/net v0.1.0
  8. )
  9. require github.com/labstack/echo/v4 v4.9.0
  10. require (
  11. github.com/VictoriaMetrics/fastcache v1.10.0
  12. github.com/gorilla/feeds v1.1.1
  13. github.com/gorilla/sessions v1.2.1
  14. github.com/labstack/echo-contrib v0.13.0
  15. )
  16. require (
  17. github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect
  18. github.com/cespare/xxhash/v2 v2.1.2 // indirect
  19. github.com/davecgh/go-spew v1.1.1 // indirect
  20. github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
  21. github.com/golang/snappy v0.0.4 // indirect
  22. github.com/gorilla/context v1.1.1 // indirect
  23. github.com/gorilla/securecookie v1.1.1 // indirect
  24. github.com/kr/pretty v0.3.1 // indirect
  25. github.com/labstack/gommon v0.3.1 // indirect
  26. github.com/mattn/go-colorable v0.1.12 // indirect
  27. github.com/mattn/go-isatty v0.0.14 // indirect
  28. github.com/pmezard/go-difflib v1.0.0 // indirect
  29. github.com/segmentio/backo-go v1.0.1 // indirect
  30. github.com/valyala/bytebufferpool v1.0.0 // indirect
  31. github.com/valyala/fasttemplate v1.2.1 // indirect
  32. github.com/xtgo/uuid v0.0.0-20140804021211-a0b114877d4c // indirect
  33. go.uber.org/atomic v1.9.0 // indirect
  34. go.uber.org/multierr v1.6.0 // indirect
  35. golang.org/x/sys v0.1.0 // indirect
  36. golang.org/x/text v0.4.0 // indirect
  37. golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9 // indirect
  38. gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
  39. gopkg.in/yaml.v3 v3.0.1 // indirect
  40. )
  41. require (
  42. github.com/pkg/errors v0.9.1
  43. github.com/segmentio/analytics-go v3.1.0+incompatible
  44. github.com/stretchr/testify v1.8.0
  45. go.uber.org/zap v1.24.0
  46. golang.org/x/exp v0.0.0-20230111222715-75897c7a292a
  47. golang.org/x/mod v0.6.0
  48. )