You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.1 KiB

11 months ago
11 months ago
10 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
10 months ago
11 months ago
  1. module git.chrishayward.xyz/x/users
  2. go 1.20
  3. require (
  4. github.com/google/uuid v1.3.0
  5. github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.2
  6. golang.org/x/crypto v0.11.0
  7. google.golang.org/grpc v1.57.0
  8. google.golang.org/protobuf v1.31.0
  9. gopkg.in/yaml.v3 v3.0.1
  10. gorm.io/driver/postgres v1.5.2
  11. gorm.io/driver/sqlite v1.5.2
  12. gorm.io/gorm v1.25.2
  13. )
  14. require (
  15. github.com/golang/protobuf v1.5.3 // indirect
  16. github.com/jackc/pgpassfile v1.0.0 // indirect
  17. github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
  18. github.com/jackc/pgx/v5 v5.3.1 // indirect
  19. github.com/jinzhu/inflection v1.0.0 // indirect
  20. github.com/jinzhu/now v1.1.5 // indirect
  21. github.com/kr/text v0.2.0 // indirect
  22. github.com/mattn/go-sqlite3 v1.14.17 // indirect
  23. github.com/rogpeppe/go-internal v1.11.0 // indirect
  24. golang.org/x/net v0.12.0 // indirect
  25. golang.org/x/sys v0.10.0 // indirect
  26. golang.org/x/text v0.11.0 // indirect
  27. google.golang.org/genproto/googleapis/api v0.0.0-20230726155614-23370e0ffb3e // indirect
  28. google.golang.org/genproto/googleapis/rpc v0.0.0-20230726155614-23370e0ffb3e // indirect
  29. )