1
0
mirror of https://github.com/ManyakRus/crud_generator.git synced 2024-11-24 08:22:42 +02:00
crud_generator/go.mod

47 lines
1.8 KiB
Modula-2
Raw Normal View History

2023-09-28 16:45:44 +02:00
module github.com/ManyakRus/crud_generator
go 1.20
require (
2023-11-15 10:43:15 +02:00
github.com/ManyakRus/starter v0.0.0-20231115082945-e2f3f8f5ed62
2023-11-14 16:07:41 +02:00
github.com/bxcodec/faker/v3 v3.8.1
github.com/davecgh/go-spew v1.1.1
github.com/iancoleman/strcase v0.3.0
github.com/jimsmart/schema v0.2.1
github.com/jinzhu/inflection v1.0.0
github.com/logrusorgru/aurora v2.0.3+incompatible
github.com/nats-io/nats.go v1.31.0
github.com/ompluscator/dynamic-struct v1.4.0
github.com/serenize/snaker v0.0.0-20201027110005-a7ad2135616e
gitlab.aescorp.ru/dsp_dev/claim/sync_service v1.2.24
golang.org/x/tools v0.15.0
2023-10-24 17:03:04 +02:00
gorm.io/gorm v1.25.5
2023-09-28 16:45:44 +02:00
)
require (
2023-11-14 16:07:41 +02:00
github.com/ManyakRus/logrus v0.0.0-20231019115155-9e6fede0d792 // indirect
github.com/golang/protobuf v1.5.3 // indirect
2023-09-28 16:45:44 +02:00
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
2023-11-14 16:07:41 +02:00
github.com/jackc/pgx/v5 v5.5.0 // indirect
github.com/jackc/puddle/v2 v2.2.1 // indirect
2023-09-28 16:45:44 +02:00
github.com/jinzhu/now v1.1.5 // indirect
github.com/joho/godotenv v1.5.1 // indirect
2023-11-14 16:07:41 +02:00
github.com/klauspost/compress v1.17.2 // indirect
github.com/nats-io/nkeys v0.4.6 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
github.com/nats-rpc/nrpc v0.0.0-20231018091755-18e69326f052 // indirect
2023-11-15 10:43:15 +02:00
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
2023-11-14 16:07:41 +02:00
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
golang.org/x/crypto v0.15.0 // indirect
golang.org/x/mod v0.14.0 // indirect
golang.org/x/net v0.18.0 // indirect
golang.org/x/sync v0.5.0 // indirect
golang.org/x/sys v0.14.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20231106174013-bbf56f31fb17 // indirect
google.golang.org/grpc v1.59.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gorm.io/driver/postgres v1.5.4 // indirect
2023-09-28 16:45:44 +02:00
)