The backend for the project formerly known as signet, now known as beignet.
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

55 рядки
2.3 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/rs/zerolog v1.15.0
  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/magiconair/properties v1.5.4 // indirect
  35. github.com/manucorporat/sse v0.0.0-20160126180136-ee05b128a739 // indirect
  36. github.com/mitchellh/mapstructure v0.0.0-20150613213606-2caf8efc9366 // indirect
  37. github.com/pkg/errors v0.9.1 // indirect
  38. github.com/pmezard/go-difflib v1.0.0 // indirect
  39. github.com/segmentio/go-loggly v0.5.1-0.20171222203950-eb91657e62b2 // indirect
  40. github.com/sirupsen/logrus v1.4.2 // indirect
  41. github.com/spf13/cast v0.0.0-20150508191742-4d07383ffe94 // indirect
  42. github.com/spf13/jwalterweatherman v0.0.0-20141219030609-3d60171a6431 // indirect
  43. github.com/spf13/pflag v0.0.0-20161005214240-4bd69631f475 // indirect
  44. github.com/stellar/go-xdr v0.0.0-20211103144802-8017fc4bdfee // indirect
  45. github.com/stretchr/objx v0.4.0 // indirect
  46. github.com/stretchr/testify v1.8.0 // indirect
  47. golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9 // indirect
  48. golang.org/x/text v0.3.7 // indirect
  49. gopkg.in/yaml.v2 v2.2.8 // indirect
  50. gopkg.in/yaml.v3 v3.0.1 // indirect
  51. )