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.
27 lines
831 B
27 lines
831 B
module git.chrishayward.xyz/x/users
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
github.com/google/uuid v1.3.0
|
|
golang.org/x/crypto v0.10.0
|
|
google.golang.org/grpc v1.56.1
|
|
google.golang.org/protobuf v1.31.0
|
|
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/mattn/go-sqlite3 v1.14.17 // indirect
|
|
golang.org/x/net v0.10.0 // indirect
|
|
golang.org/x/sys v0.9.0 // indirect
|
|
golang.org/x/text v0.10.0 // indirect
|
|
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
|
|
)
|