The backend for the project formerly known as signet, now known as beignet.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

61 lignes
2.7 KiB

  1. module github.com/imosed/signet
  2. go 1.19
  3. require (
  4. github.com/golang-jwt/jwt/v4 v4.4.3
  5. github.com/gorilla/mux v1.8.0
  6. github.com/gorilla/websocket v1.5.0
  7. github.com/pdrum/swagger-automation v0.0.0-20190629163613-c8c7c80ba858
  8. github.com/spf13/viper v0.0.0-20150621231900-db7ff930a189
  9. github.com/stellar/go v0.0.0-20221028081946-9308f9531041
  10. golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa
  11. golang.org/x/net v0.0.0-20220225172249-27dd8689420f
  12. gorm.io/driver/postgres v1.4.5
  13. gorm.io/gorm v1.24.1
  14. )
  15. require (
  16. github.com/BurntSushi/toml v0.3.1 // indirect
  17. github.com/davecgh/go-spew v1.1.1 // indirect
  18. github.com/go-chi/chi v4.0.3+incompatible // indirect
  19. github.com/go-errors/errors v0.0.0-20150906023321-a41850380601 // indirect
  20. github.com/gorilla/schema v1.1.0 // indirect
  21. github.com/jackc/chunkreader/v2 v2.0.1 // indirect
  22. github.com/jackc/pgconn v1.13.0 // indirect
  23. github.com/jackc/pgio v1.0.0 // indirect
  24. github.com/jackc/pgpassfile v1.0.0 // indirect
  25. github.com/jackc/pgproto3/v2 v2.3.1 // indirect
  26. github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
  27. github.com/jackc/pgtype v1.12.0 // indirect
  28. github.com/jackc/pgx/v4 v4.17.2 // indirect
  29. github.com/jinzhu/inflection v1.0.0 // indirect
  30. github.com/jinzhu/now v1.1.4 // indirect
  31. github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
  32. github.com/kr/pretty v0.1.0 // indirect
  33. github.com/kr/text v0.1.0 // indirect
  34. github.com/labstack/echo v3.3.10+incompatible // indirect
  35. github.com/labstack/gommon v0.2.9 // indirect
  36. github.com/magiconair/properties v1.5.4 // indirect
  37. github.com/manucorporat/sse v0.0.0-20160126180136-ee05b128a739 // indirect
  38. github.com/mattn/go-colorable v0.1.6 // indirect
  39. github.com/mattn/go-isatty v0.0.12 // indirect
  40. github.com/mitchellh/mapstructure v0.0.0-20150613213606-2caf8efc9366 // indirect
  41. github.com/pkg/errors v0.9.1 // indirect
  42. github.com/pmezard/go-difflib v1.0.0 // indirect
  43. github.com/segmentio/go-loggly v0.5.1-0.20171222203950-eb91657e62b2 // indirect
  44. github.com/sirupsen/logrus v1.4.2 // indirect
  45. github.com/spf13/cast v0.0.0-20150508191742-4d07383ffe94 // indirect
  46. github.com/spf13/jwalterweatherman v0.0.0-20141219030609-3d60171a6431 // indirect
  47. github.com/spf13/pflag v0.0.0-20161005214240-4bd69631f475 // indirect
  48. github.com/stellar/go-xdr v0.0.0-20211103144802-8017fc4bdfee // indirect
  49. github.com/stretchr/objx v0.4.0 // indirect
  50. github.com/stretchr/testify v1.8.0 // indirect
  51. github.com/valyala/bytebufferpool v1.0.0 // indirect
  52. github.com/valyala/fasttemplate v1.0.1 // indirect
  53. golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9 // indirect
  54. golang.org/x/text v0.3.7 // indirect
  55. gopkg.in/yaml.v2 v2.2.8 // indirect
  56. gopkg.in/yaml.v3 v3.0.1 // indirect
  57. )