go.mod 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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.0.0-20220722155217-630584e8d5aa
  7. golang.org/x/net v0.0.0-20220728030405-41545e8bf201
  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/securecookie v1.1.1
  14. github.com/gorilla/sessions v1.2.1
  15. github.com/labstack/echo-contrib v0.13.0
  16. github.com/stretchr/testify v1.8.1
  17. )
  18. require (
  19. github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect
  20. github.com/cespare/xxhash/v2 v2.1.2 // indirect
  21. github.com/davecgh/go-spew v1.1.1 // indirect
  22. github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
  23. github.com/golang/snappy v0.0.4 // indirect
  24. github.com/gorilla/context v1.1.1 // indirect
  25. github.com/kr/pretty v0.3.1 // indirect
  26. github.com/labstack/gommon v0.3.1 // indirect
  27. github.com/mattn/go-colorable v0.1.12 // indirect
  28. github.com/mattn/go-isatty v0.0.14 // indirect
  29. github.com/pmezard/go-difflib v1.0.0 // indirect
  30. github.com/segmentio/backo-go v1.0.1 // indirect
  31. github.com/valyala/bytebufferpool v1.0.0 // indirect
  32. github.com/valyala/fasttemplate v1.2.1 // indirect
  33. github.com/xtgo/uuid v0.0.0-20140804021211-a0b114877d4c // indirect
  34. golang.org/x/sys v0.1.0 // indirect
  35. golang.org/x/text v0.3.7 // indirect
  36. golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9 // indirect
  37. gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
  38. gopkg.in/yaml.v3 v3.0.1 // indirect
  39. )
  40. require (
  41. github.com/segmentio/analytics-go v3.1.0+incompatible
  42. golang.org/x/exp v0.0.0-20221217163422-3c43f8badb15
  43. )