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
32 lines
1.1 KiB
module git.chrishayward.xyz/x/users
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
github.com/google/uuid v1.3.0
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.2
|
|
golang.org/x/crypto v0.11.0
|
|
google.golang.org/grpc v1.57.0
|
|
google.golang.org/protobuf v1.31.0
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
gorm.io/driver/postgres v1.5.2
|
|
gorm.io/driver/sqlite v1.5.2
|
|
gorm.io/gorm v1.25.2
|
|
)
|
|
|
|
require (
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
|
|
github.com/jackc/pgx/v5 v5.3.1 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
|
github.com/kr/text v0.2.0 // indirect
|
|
github.com/mattn/go-sqlite3 v1.14.17 // indirect
|
|
github.com/rogpeppe/go-internal v1.11.0 // indirect
|
|
golang.org/x/net v0.12.0 // indirect
|
|
golang.org/x/sys v0.10.0 // indirect
|
|
golang.org/x/text v0.11.0 // indirect
|
|
google.golang.org/genproto/googleapis/api v0.0.0-20230726155614-23370e0ffb3e // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20230726155614-23370e0ffb3e // indirect
|
|
)
|